4 lines
97 B
TypeScript
4 lines
97 B
TypeScript
export function allocateObjectUrlDirectly(value: never) {
|
|
return URL.createObjectURL(value);
|
|
}
|