2016-05-02 11:21:47 +05:30
|
|
|
let lastId = 0;
|
|
|
|
export function uniqueId(prefix = 'id') {
|
|
|
|
return `${prefix}${++lastId}`;
|
|
|
|
}
|
2016-07-29 22:44:52 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {object} obj
|
|
|
|
* @param {array} keys
|
|
|
|
*
|
|
|
|
* @return {object}
|
|
|
|
*/
|
|
|
|
export function omit(obj, keys) {
|
|
|
|
const newObj = {...obj};
|
|
|
|
|
|
|
|
keys.forEach((key) => {
|
|
|
|
Reflect.deleteProperty(newObj, key);
|
|
|
|
});
|
|
|
|
|
|
|
|
return newObj;
|
|
|
|
}
|
2016-07-31 19:23:16 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* Asynchronously loads script
|
|
|
|
*
|
|
|
|
* @param {string} src
|
|
|
|
*
|
|
|
|
* @return {Promise}
|
|
|
|
*/
|
|
|
|
export function loadScript(src) {
|
|
|
|
const script = document.createElement('script');
|
|
|
|
|
|
|
|
script.async = true;
|
|
|
|
script.defer = true;
|
|
|
|
script.src = src;
|
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
script.onlaod = resolve;
|
|
|
|
script.onerror = reject;
|
|
|
|
|
|
|
|
document.body.appendChild(script);
|
|
|
|
});
|
|
|
|
}
|