PATH:
usr
/
local
/
lib
/
node_modules
/
knex-migrator
/
node_modules
/
core-js
/
modules
/
library
var global = require('./_global'); var core = require('./_core'); var ctx = require('./_ctx'); var hide = require('./_hide'); var has = require('./_has'); var PROTOTYPE = 'prototype'; var $export = function (type, name, source) { var IS_FORCED = type & $export.F; var IS_GLOBAL = type & $export.G; var IS_STATIC = type & $export.S; var IS_PROTO = type & $export.P; var IS_BIND = type & $export.B; var IS_WRAP = type & $export.W; var exports = IS_GLOBAL ? core : core[name] || (core[name] = {}); var expProto = exports[PROTOTYPE]; var target = IS_GLOBAL ? global : IS_STATIC ? global[name] : (global[name] || {})[PROTOTYPE]; var key, own, out; if (IS_GLOBAL) source = name; for (key in source) { // contains in native own = !IS_FORCED && target && target[key] !== undefined; if (own && has(exports, key)) continue; // export native or passed out = own ? target[key] : source[key]; // prevent global pollution for namespaces exports[key] = IS_GLOBAL && typeof target[key] != 'function' ? source[key] // bind timers to global for call from export context : IS_BIND && own ? ctx(out, global) // wrap global constructors for prevent change them in library : IS_WRAP && target[key] == out ? (function (C) { var F = function (a, b, c) { if (this instanceof C) { switch (arguments.length) { case 0: return new C(); case 1: return new C(a); case 2: return new C(a, b); } return new C(a, b, c); } return C.apply(this, arguments); }; F[PROTOTYPE] = C[PROTOTYPE]; return F; // make static versions for prototype methods })(out) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out; // export proto methods to core.%CONSTRUCTOR%.methods.%NAME% if (IS_PROTO) { (exports.virtual || (exports.virtual = {}))[key] = out; // export proto methods to core.%CONSTRUCTOR%.prototype.%NAME% if (type & $export.R && expProto && !expProto[key]) hide(expProto, key, out); } } }; // type bitmap $export.F = 1; // forced $export.G = 2; // global $export.S = 4; // static $export.P = 8; // proto $export.B = 16; // bind $export.W = 32; // wrap $export.U = 64; // safe $export.R = 128; // real proto method for `library` module.exports = $export;
[-] es6.regexp.constructor.js
[edit]
[-] _set-species.js
[edit]
[-] _regexp-exec.js
[edit]
[-] es6.date.to-string.js
[edit]
[-] _collection.js
[edit]
[-] es6.regexp.search.js
[edit]
[-] es6.regexp.exec.js
[edit]
[+]
..
[-] web.dom.iterable.js
[edit]
[-] es6.function.name.js
[edit]
[-] _redefine-all.js
[edit]
[-] es6.regexp.split.js
[edit]
[-] es6.date.to-json.js
[edit]
[-] es6.number.constructor.js
[edit]
[-] es6.regexp.flags.js
[edit]
[-] _export.js
[edit]
[-] es6.regexp.to-string.js
[edit]
[-] es6.object.to-string.js
[edit]
[-] _add-to-unscopables.js
[edit]
[-] es6.regexp.match.js
[edit]
[-] es6.regexp.replace.js
[edit]
[-] _regexp-exec-abstract.js
[edit]
[-] _path.js
[edit]
[-] es6.date.to-primitive.js
[edit]
[-] _redefine.js
[edit]
[-] _library.js
[edit]