get the body data portion of a base64 image.
import { assertEquals } from "jsr:@std/assert"const img_uri = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAD...", img_body = getBase64ImageBody(img_uri)assertEquals(img_body, "iVBORw0KGgoAAAANSUhEUgAAD...") Copy
import { assertEquals } from "jsr:@std/assert"const img_uri = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAD...", img_body = getBase64ImageBody(img_uri)assertEquals(img_body, "iVBORw0KGgoAAAANSUhEUgAAD...")
get the body data portion of a base64 image.