mirror of
https://github.com/Doodle3D/Doodle3D-API
synced 2024-12-23 14:13:47 +01:00
286 lines
8.6 KiB
JavaScript
286 lines
8.6 KiB
JavaScript
/* */
|
|
var $ = require("./$"),
|
|
cel = require("./$.dom-create"),
|
|
cof = require("./$.cof"),
|
|
$def = require("./$.def"),
|
|
invoke = require("./$.invoke"),
|
|
arrayMethod = require("./$.array-methods"),
|
|
IE_PROTO = require("./$.uid").safe('__proto__'),
|
|
assert = require("./$.assert"),
|
|
assertObject = assert.obj,
|
|
ObjectProto = Object.prototype,
|
|
html = $.html,
|
|
A = [],
|
|
_slice = A.slice,
|
|
_join = A.join,
|
|
classof = cof.classof,
|
|
has = $.has,
|
|
defineProperty = $.setDesc,
|
|
getOwnDescriptor = $.getDesc,
|
|
defineProperties = $.setDescs,
|
|
isFunction = $.isFunction,
|
|
isObject = $.isObject,
|
|
toObject = $.toObject,
|
|
toLength = $.toLength,
|
|
toIndex = $.toIndex,
|
|
IE8_DOM_DEFINE = false,
|
|
$indexOf = require("./$.array-includes")(false),
|
|
$forEach = arrayMethod(0),
|
|
$map = arrayMethod(1),
|
|
$filter = arrayMethod(2),
|
|
$some = arrayMethod(3),
|
|
$every = arrayMethod(4);
|
|
if (!$.DESC) {
|
|
try {
|
|
IE8_DOM_DEFINE = defineProperty(cel('div'), 'x', {get: function() {
|
|
return 8;
|
|
}}).x == 8;
|
|
} catch (e) {}
|
|
$.setDesc = function(O, P, Attributes) {
|
|
if (IE8_DOM_DEFINE)
|
|
try {
|
|
return defineProperty(O, P, Attributes);
|
|
} catch (e) {}
|
|
if ('get' in Attributes || 'set' in Attributes)
|
|
throw TypeError('Accessors not supported!');
|
|
if ('value' in Attributes)
|
|
assertObject(O)[P] = Attributes.value;
|
|
return O;
|
|
};
|
|
$.getDesc = function(O, P) {
|
|
if (IE8_DOM_DEFINE)
|
|
try {
|
|
return getOwnDescriptor(O, P);
|
|
} catch (e) {}
|
|
if (has(O, P))
|
|
return $.desc(!ObjectProto.propertyIsEnumerable.call(O, P), O[P]);
|
|
};
|
|
$.setDescs = defineProperties = function(O, Properties) {
|
|
assertObject(O);
|
|
var keys = $.getKeys(Properties),
|
|
length = keys.length,
|
|
i = 0,
|
|
P;
|
|
while (length > i)
|
|
$.setDesc(O, P = keys[i++], Properties[P]);
|
|
return O;
|
|
};
|
|
}
|
|
$def($def.S + $def.F * !$.DESC, 'Object', {
|
|
getOwnPropertyDescriptor: $.getDesc,
|
|
defineProperty: $.setDesc,
|
|
defineProperties: defineProperties
|
|
});
|
|
var keys1 = ('constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,' + 'toLocaleString,toString,valueOf').split(','),
|
|
keys2 = keys1.concat('length', 'prototype'),
|
|
keysLen1 = keys1.length;
|
|
var createDict = function() {
|
|
var iframe = cel('iframe'),
|
|
i = keysLen1,
|
|
gt = '>',
|
|
iframeDocument;
|
|
iframe.style.display = 'none';
|
|
html.appendChild(iframe);
|
|
iframe.src = 'javascript:';
|
|
iframeDocument = iframe.contentWindow.document;
|
|
iframeDocument.open();
|
|
iframeDocument.write('<script>document.F=Object</script' + gt);
|
|
iframeDocument.close();
|
|
createDict = iframeDocument.F;
|
|
while (i--)
|
|
delete createDict.prototype[keys1[i]];
|
|
return createDict();
|
|
};
|
|
function createGetKeys(names, length) {
|
|
return function(object) {
|
|
var O = toObject(object),
|
|
i = 0,
|
|
result = [],
|
|
key;
|
|
for (key in O)
|
|
if (key != IE_PROTO)
|
|
has(O, key) && result.push(key);
|
|
while (length > i)
|
|
if (has(O, key = names[i++])) {
|
|
~$indexOf(result, key) || result.push(key);
|
|
}
|
|
return result;
|
|
};
|
|
}
|
|
function Empty() {}
|
|
$def($def.S, 'Object', {
|
|
getPrototypeOf: $.getProto = $.getProto || function(O) {
|
|
O = Object(assert.def(O));
|
|
if (has(O, IE_PROTO))
|
|
return O[IE_PROTO];
|
|
if (isFunction(O.constructor) && O instanceof O.constructor) {
|
|
return O.constructor.prototype;
|
|
}
|
|
return O instanceof Object ? ObjectProto : null;
|
|
},
|
|
getOwnPropertyNames: $.getNames = $.getNames || createGetKeys(keys2, keys2.length, true),
|
|
create: $.create = $.create || function(O, Properties) {
|
|
var result;
|
|
if (O !== null) {
|
|
Empty.prototype = assertObject(O);
|
|
result = new Empty();
|
|
Empty.prototype = null;
|
|
result[IE_PROTO] = O;
|
|
} else
|
|
result = createDict();
|
|
return Properties === undefined ? result : defineProperties(result, Properties);
|
|
},
|
|
keys: $.getKeys = $.getKeys || createGetKeys(keys1, keysLen1, false),
|
|
seal: function seal(it) {
|
|
return it;
|
|
},
|
|
freeze: function freeze(it) {
|
|
return it;
|
|
},
|
|
preventExtensions: function preventExtensions(it) {
|
|
return it;
|
|
},
|
|
isSealed: function isSealed(it) {
|
|
return !isObject(it);
|
|
},
|
|
isFrozen: function isFrozen(it) {
|
|
return !isObject(it);
|
|
},
|
|
isExtensible: function isExtensible(it) {
|
|
return isObject(it);
|
|
}
|
|
});
|
|
$def($def.P, 'Function', {bind: function(that) {
|
|
var fn = assert.fn(this),
|
|
partArgs = _slice.call(arguments, 1);
|
|
function bound() {
|
|
var args = partArgs.concat(_slice.call(arguments)),
|
|
constr = this instanceof bound,
|
|
ctx = constr ? $.create(fn.prototype) : that,
|
|
result = invoke(fn, args, ctx);
|
|
return constr ? ctx : result;
|
|
}
|
|
if (fn.prototype)
|
|
bound.prototype = fn.prototype;
|
|
return bound;
|
|
}});
|
|
if (!(0 in Object('z') && 'z'[0] == 'z')) {
|
|
$.ES5Object = function(it) {
|
|
return cof(it) == 'String' ? it.split('') : Object(it);
|
|
};
|
|
}
|
|
var buggySlice = true;
|
|
try {
|
|
if (html)
|
|
_slice.call(html);
|
|
buggySlice = false;
|
|
} catch (e) {}
|
|
$def($def.P + $def.F * buggySlice, 'Array', {slice: function slice(begin, end) {
|
|
var len = toLength(this.length),
|
|
klass = cof(this);
|
|
end = end === undefined ? len : end;
|
|
if (klass == 'Array')
|
|
return _slice.call(this, begin, end);
|
|
var start = toIndex(begin, len),
|
|
upTo = toIndex(end, len),
|
|
size = toLength(upTo - start),
|
|
cloned = Array(size),
|
|
i = 0;
|
|
for (; i < size; i++)
|
|
cloned[i] = klass == 'String' ? this.charAt(start + i) : this[start + i];
|
|
return cloned;
|
|
}});
|
|
$def($def.P + $def.F * ($.ES5Object != Object), 'Array', {join: function join() {
|
|
return _join.apply($.ES5Object(this), arguments);
|
|
}});
|
|
$def($def.S, 'Array', {isArray: function(arg) {
|
|
return cof(arg) == 'Array';
|
|
}});
|
|
function createArrayReduce(isRight) {
|
|
return function(callbackfn, memo) {
|
|
assert.fn(callbackfn);
|
|
var O = toObject(this),
|
|
length = toLength(O.length),
|
|
index = isRight ? length - 1 : 0,
|
|
i = isRight ? -1 : 1;
|
|
if (arguments.length < 2)
|
|
for (; ; ) {
|
|
if (index in O) {
|
|
memo = O[index];
|
|
index += i;
|
|
break;
|
|
}
|
|
index += i;
|
|
assert(isRight ? index >= 0 : length > index, 'Reduce of empty array with no initial value');
|
|
}
|
|
for (; isRight ? index >= 0 : length > index; index += i)
|
|
if (index in O) {
|
|
memo = callbackfn(memo, O[index], index, this);
|
|
}
|
|
return memo;
|
|
};
|
|
}
|
|
$def($def.P, 'Array', {
|
|
forEach: $.each = $.each || function forEach(callbackfn) {
|
|
return $forEach(this, callbackfn, arguments[1]);
|
|
},
|
|
map: function map(callbackfn) {
|
|
return $map(this, callbackfn, arguments[1]);
|
|
},
|
|
filter: function filter(callbackfn) {
|
|
return $filter(this, callbackfn, arguments[1]);
|
|
},
|
|
some: function some(callbackfn) {
|
|
return $some(this, callbackfn, arguments[1]);
|
|
},
|
|
every: function every(callbackfn) {
|
|
return $every(this, callbackfn, arguments[1]);
|
|
},
|
|
reduce: createArrayReduce(false),
|
|
reduceRight: createArrayReduce(true),
|
|
indexOf: function indexOf(el) {
|
|
return $indexOf(this, el, arguments[1]);
|
|
},
|
|
lastIndexOf: function(el, fromIndex) {
|
|
var O = toObject(this),
|
|
length = toLength(O.length),
|
|
index = length - 1;
|
|
if (arguments.length > 1)
|
|
index = Math.min(index, $.toInteger(fromIndex));
|
|
if (index < 0)
|
|
index = toLength(length + index);
|
|
for (; index >= 0; index--)
|
|
if (index in O)
|
|
if (O[index] === el)
|
|
return index;
|
|
return -1;
|
|
}
|
|
});
|
|
$def($def.P, 'String', {trim: require("./$.replacer")(/^\s*([\s\S]*\S)?\s*$/, '$1')});
|
|
$def($def.S, 'Date', {now: function() {
|
|
return +new Date;
|
|
}});
|
|
function lz(num) {
|
|
return num > 9 ? num : '0' + num;
|
|
}
|
|
var date = new Date(-5e13 - 1),
|
|
brokenDate = !(date.toISOString && date.toISOString() == '0385-07-25T07:06:39.999Z' && require("./$.throws")(function() {
|
|
new Date(NaN).toISOString();
|
|
}));
|
|
$def($def.P + $def.F * brokenDate, 'Date', {toISOString: function() {
|
|
if (!isFinite(this))
|
|
throw RangeError('Invalid time value');
|
|
var d = this,
|
|
y = d.getUTCFullYear(),
|
|
m = d.getUTCMilliseconds(),
|
|
s = y < 0 ? '-' : y > 9999 ? '+' : '';
|
|
return s + ('00000' + Math.abs(y)).slice(s ? -6 : -4) + '-' + lz(d.getUTCMonth() + 1) + '-' + lz(d.getUTCDate()) + 'T' + lz(d.getUTCHours()) + ':' + lz(d.getUTCMinutes()) + ':' + lz(d.getUTCSeconds()) + '.' + (m > 99 ? m : '0' + lz(m)) + 'Z';
|
|
}});
|
|
if (classof(function() {
|
|
return arguments;
|
|
}()) == 'Object')
|
|
cof.classof = function(it) {
|
|
var tag = classof(it);
|
|
return tag == 'Object' && isFunction(it.callee) ? 'Arguments' : tag;
|
|
};
|