| /plugin/asciidocjs/node_modules/has-proto/ |
| D | README.md | 1 # has-proto <sup>[![Version Badge][npm-version-svg]][package-url]</sup> 15 var hasProto = require('has-proto'); 24 [package-url]: https://npmjs.org/package/has-proto 25 [npm-version-svg]: https://versionbadg.es/inspect-js/has-proto.svg 26 [deps-svg]: https://david-dm.org/inspect-js/has-proto.svg 27 [deps-url]: https://david-dm.org/inspect-js/has-proto 28 [dev-deps-svg]: https://david-dm.org/inspect-js/has-proto/dev-status.svg 29 [dev-deps-url]: https://david-dm.org/inspect-js/has-proto#info=devDependencies 30 [npm-badge-png]: https://nodei.co/npm/has-proto.png?downloads=true&stars=true 31 [license-image]: https://img.shields.io/npm/l/has-proto.svg [all …]
|
| D | CHANGELOG.md | 8 ## [v1.0.1](https://github.com/inspect-js/has-proto/compare/v1.0.0...v1.0.1) - 2022-12-21 12 - [meta] correct URLs and description [`ef34483`](https://github.com/inspect-js/has-proto/commit/ef… 13 - [patch] add an additional criteria [`e81959e`](https://github.com/inspect-js/has-proto/commit/e81… 14 - [Dev Deps] update `aud` [`2bec2c4`](https://github.com/inspect-js/has-proto/commit/2bec2c47b072b1… 20 - Initial implementation, tests, readme [`6886fea`](https://github.com/inspect-js/has-proto/commit/… 21 - Initial commit [`99129c8`](https://github.com/inspect-js/has-proto/commit/99129c8f42471ac89cb681b… 22 - npm init [`2844ad8`](https://github.com/inspect-js/has-proto/commit/2844ad8e75b84d66a46765b3bab9d… 23 - Only apps should have lockfiles [`c65bc5e`](https://github.com/inspect-js/has-proto/commit/c65bc5…
|
| /plugin/asciidocjs/node_modules/core-js/modules/ |
| D | _set-proto.js | 5 var check = function (O, proto) { argument 7 if (!isObject(proto) && proto !== null) throw TypeError(proto + ": can't set as prototype!"); 17 return function setPrototypeOf(O, proto) { 18 check(O, proto); 19 if (buggy) O.__proto__ = proto; 20 else set(O, proto);
|
| D | _iter-define.js | 21 if (!BUGGY && kind in proto) return proto[kind]; 30 var proto = Base.prototype; 31 var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT]; 34 var $anyNative = NAME == 'Array' ? proto.entries || $native : $native; 52 if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) { 53 hide(proto, ITERATOR, $default); 65 if (!(key in proto)) redefine(proto, key, methods[key]);
|
| D | web.dom.iterable.js | 50 var proto = Collection && Collection.prototype; variable 52 if (proto) { 53 if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues); 54 if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME); 56 …if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true);
|
| D | _collection.js | 19 var proto = C && C.prototype; 22 var fn = proto[KEY]; 23 redefine(proto, KEY, 34 if (typeof C != 'function' || !(IS_WEAK || proto.forEach && !fails(function () { 64 C.prototype = proto; 65 proto.constructor = C; 74 if (IS_WEAK && proto.clear) delete proto.clear;
|
| D | es6.date.to-primitive.js | 2 var proto = Date.prototype; variable 4 if (!(TO_PRIMITIVE in proto)) require('./_hide')(proto, TO_PRIMITIVE, require('./_date-to-primitive…
|
| D | es6.number.constructor.js | 15 var proto = $Number.prototype; variable 17 var BROKEN_COF = cof(require('./_object-create')(proto)) == NUMBER; 52 && (BROKEN_COF ? fails(function () { proto.valueOf.call(that); }) : cof(that) != NUMBER) 66 $Number.prototype = proto; 67 proto.constructor = $Number;
|
| D | es6.reflect.set-prototype-of.js | 6 setPrototypeOf: function setPrototypeOf(target, proto) { 7 setProto.check(target, proto); 9 setProto.set(target, proto);
|
| D | es6.regexp.constructor.js | 9 var proto = $RegExp.prototype; variable 28 , tiRE ? this : proto, $RegExp); 38 proto.constructor = $RegExp; 39 $RegExp.prototype = proto;
|
| D | es6.reflect.get.js | 11 var desc, proto; 18 if (isObject(proto = getPrototypeOf(target))) return get(proto, propertyKey, receiver);
|
| D | es6.reflect.set.js | 14 var existingDescriptor, proto; 16 if (isObject(proto = getPrototypeOf(target))) { 17 return set(proto, propertyKey, V, receiver);
|
| D | es6.reflect.construct.js | 42 var proto = newTarget.prototype; variable 43 var instance = create(isObject(proto) ? proto : Object.prototype);
|
| /plugin/asciidocjs/node_modules/core-js/library/modules/ |
| D | _set-proto.js | 5 var check = function (O, proto) { argument 7 if (!isObject(proto) && proto !== null) throw TypeError(proto + ": can't set as prototype!"); 17 return function setPrototypeOf(O, proto) { 18 check(O, proto); 19 if (buggy) O.__proto__ = proto; 20 else set(O, proto);
|
| D | _iter-define.js | 21 if (!BUGGY && kind in proto) return proto[kind]; 30 var proto = Base.prototype; 31 var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT]; 34 var $anyNative = NAME == 'Array' ? proto.entries || $native : $native; 52 if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) { 53 hide(proto, ITERATOR, $default); 65 if (!(key in proto)) redefine(proto, key, methods[key]);
|
| D | web.dom.iterable.js | 16 var proto = Collection && Collection.prototype; variable 17 if (proto && !proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);
|
| D | es6.reflect.set-prototype-of.js | 6 setPrototypeOf: function setPrototypeOf(target, proto) { 7 setProto.check(target, proto); 9 setProto.set(target, proto);
|
| D | es6.reflect.get.js | 11 var desc, proto; 18 if (isObject(proto = getPrototypeOf(target))) return get(proto, propertyKey, receiver);
|
| D | es6.reflect.set.js | 14 var existingDescriptor, proto; 16 if (isObject(proto = getPrototypeOf(target))) { 17 return set(proto, propertyKey, V, receiver);
|
| D | es6.reflect.construct.js | 42 var proto = newTarget.prototype; variable 43 var instance = create(isObject(proto) ? proto : Object.prototype);
|
| /plugin/asciidocjs/node_modules/lodash/ |
| D | _baseCreate.js | 16 return function(proto) { argument 17 if (!isObject(proto)) { 21 return objectCreate(proto); 23 object.prototype = proto;
|
| D | isPlainObject.js | 53 var proto = getPrototype(value); 54 if (proto === null) { 57 var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor;
|
| D | _isPrototype.js | 13 proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto; 15 return value === proto;
|
| /plugin/asciidocjs/node_modules/core-js/modules/library/ |
| D | web.dom.iterable.js | 16 var proto = Collection && Collection.prototype; variable 17 if (proto && !proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);
|
| /plugin/davcal/fullcalendar-3.10.5/ |
| H A D | moment.js | 3831 var proto = Moment.prototype; 3833 proto.add = add; 3834 proto.calendar = calendar$1; 3835 proto.clone = clone; 3836 proto.diff = diff; 3837 proto.endOf = endOf; 3838 proto.format = format; 3839 proto.from = from; 3840 proto.fromNow = fromNow; 3841 proto.to = to; [all …]
|