mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-25 17:40:02 +00:00
41 lines
751 B
JavaScript
41 lines
751 B
JavaScript
// ../../../AppData/Roaming/npm/node_modules/vitepress/lib/vue-demi.mjs
|
|
var isVue2 = false;
|
|
var isVue3 = true;
|
|
var Vue2 = void 0;
|
|
function install() {
|
|
}
|
|
function set(target, key, val) {
|
|
if (Array.isArray(target)) {
|
|
target.length = Math.max(target.length, key);
|
|
target.splice(key, 1, val);
|
|
return val;
|
|
}
|
|
target[key] = val;
|
|
return val;
|
|
}
|
|
function del(target, key) {
|
|
if (Array.isArray(target)) {
|
|
target.splice(key, 1);
|
|
return;
|
|
}
|
|
delete target[key];
|
|
}
|
|
|
|
export {
|
|
isVue2,
|
|
isVue3,
|
|
Vue2,
|
|
install,
|
|
set,
|
|
del
|
|
};
|
|
/*! Bundled license information:
|
|
|
|
vitepress/lib/vue-demi.mjs:
|
|
(**
|
|
* vue-demi v0.14.7
|
|
* Copyright (c) 2020-present, Anthony Fu
|
|
* @license MIT
|
|
*)
|
|
*/
|
|
//# sourceMappingURL=chunk-4ENCBMR5.js.map
|