util-helpers
Version:
11 lines (8 loc) • 397 B
JavaScript
import { constant, noop } from 'ut2';
import { URLExisted } from './setup.js';
var nativeUndefined = void 0;
var objectKeys = Object.keys;
var objectValues = Object.values;
var createObjectURL = URLExisted ? URL.createObjectURL : constant('');
var revokeObjectURL = URLExisted ? URL.revokeObjectURL : noop;
export { createObjectURL, nativeUndefined, objectKeys, objectValues, revokeObjectURL };