Commit 519b7396df2110f9281a7242f10b01a51b8af786

Authored by Nikita Kulshreshtha
1 parent 1a5f0330

files came after resettimg to Develop-IPAD-MAc

400-SOURCECODE/AIAHTML5.Admin/node_modules/core-js/library/modules/_create-property.js 0 → 100644
  1 +'use strict';
  2 +var $defineProperty = require('./_object-dp')
  3 + , createDesc = require('./_property-desc');
  4 +
  5 +module.exports = function(object, index, value){
  6 + if(index in object)$defineProperty.f(object, index, createDesc(0, value));
  7 + else object[index] = value;
  8 +};
0 \ No newline at end of file 9 \ No newline at end of file
400-SOURCECODE/AIAHTML5.Admin/node_modules/core-js/library/modules/_date-to-primitive.js 0 → 100644
  1 +'use strict';
  2 +var anObject = require('./_an-object')
  3 + , toPrimitive = require('./_to-primitive')
  4 + , NUMBER = 'number';
  5 +
  6 +module.exports = function(hint){
  7 + if(hint !== 'string' && hint !== NUMBER && hint !== 'default')throw TypeError('Incorrect hint');
  8 + return toPrimitive(anObject(this), hint != NUMBER);
  9 +};
0 \ No newline at end of file 10 \ No newline at end of file
400-SOURCECODE/AIAHTML5.Admin/node_modules/core-js/library/modules/_defined.js 0 → 100644
  1 +// 7.2.1 RequireObjectCoercible(argument)
  2 +module.exports = function(it){
  3 + if(it == undefined)throw TypeError("Can't call method on " + it);
  4 + return it;
  5 +};
0 \ No newline at end of file 6 \ No newline at end of file
400-SOURCECODE/AIAHTML5.Admin/node_modules/core-js/library/modules/_descriptors.js 0 → 100644
  1 +// Thank's IE8 for his funny defineProperty
  2 +module.exports = !require('./_fails')(function(){
  3 + return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7;
  4 +});
0 \ No newline at end of file 5 \ No newline at end of file
400-SOURCECODE/AIAHTML5.Admin/node_modules/core-js/library/modules/_dom-create.js 0 → 100644
  1 +var isObject = require('./_is-object')
  2 + , document = require('./_global').document
  3 + // in old IE typeof document.createElement is 'object'
  4 + , is = isObject(document) && isObject(document.createElement);
  5 +module.exports = function(it){
  6 + return is ? document.createElement(it) : {};
  7 +};
0 \ No newline at end of file 8 \ No newline at end of file
400-SOURCECODE/AIAHTML5.Admin/node_modules/core-js/library/modules/_entry-virtual.js 0 → 100644
  1 +var core = require('./_core');
  2 +module.exports = function(CONSTRUCTOR){
  3 + var C = core[CONSTRUCTOR];
  4 + return (C.virtual || C.prototype);
  5 +};
0 \ No newline at end of file 6 \ No newline at end of file
400-SOURCECODE/AIAHTML5.Admin/node_modules/core-js/library/modules/_enum-bug-keys.js 0 → 100644
  1 +// IE 8- don't enum bug keys
  2 +module.exports = (
  3 + 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'
  4 +).split(',');
0 \ No newline at end of file 5 \ No newline at end of file
400-SOURCECODE/AIAHTML5.Admin/node_modules/core-js/library/modules/_enum-keys.js 0 → 100644
  1 +// all enumerable object keys, includes symbols
  2 +var getKeys = require('./_object-keys')
  3 + , gOPS = require('./_object-gops')
  4 + , pIE = require('./_object-pie');
  5 +module.exports = function(it){
  6 + var result = getKeys(it)
  7 + , getSymbols = gOPS.f;
  8 + if(getSymbols){
  9 + var symbols = getSymbols(it)
  10 + , isEnum = pIE.f
  11 + , i = 0
  12 + , key;
  13 + while(symbols.length > i)if(isEnum.call(it, key = symbols[i++]))result.push(key);
  14 + } return result;
  15 +};
0 \ No newline at end of file 16 \ No newline at end of file
400-SOURCECODE/AIAHTML5.Admin/node_modules/karma/node_modules/lodash/internal/metaMap.js 0 → 100644
  1 +var getNative = require('./getNative');
  2 +
  3 +/** Native method references. */
  4 +var WeakMap = getNative(global, 'WeakMap');
  5 +
  6 +/** Used to store function metadata. */
  7 +var metaMap = WeakMap && new WeakMap;
  8 +
  9 +module.exports = metaMap;
400-SOURCECODE/AIAHTML5.Admin/node_modules/karma/node_modules/lodash/internal/pickByArray.js 0 → 100644
  1 +var toObject = require('./toObject');
  2 +
  3 +/**
  4 + * A specialized version of `_.pick` which picks `object` properties specified
  5 + * by `props`.
  6 + *
  7 + * @private
  8 + * @param {Object} object The source object.
  9 + * @param {string[]} props The property names to pick.
  10 + * @returns {Object} Returns the new object.
  11 + */
  12 +function pickByArray(object, props) {
  13 + object = toObject(object);
  14 +
  15 + var index = -1,
  16 + length = props.length,
  17 + result = {};
  18 +
  19 + while (++index < length) {
  20 + var key = props[index];
  21 + if (key in object) {
  22 + result[key] = object[key];
  23 + }
  24 + }
  25 + return result;
  26 +}
  27 +
  28 +module.exports = pickByArray;
400-SOURCECODE/AIAHTML5.Admin/node_modules/karma/node_modules/lodash/internal/pickByCallback.js 0 → 100644
  1 +var baseForIn = require('./baseForIn');
  2 +
  3 +/**
  4 + * A specialized version of `_.pick` which picks `object` properties `predicate`
  5 + * returns truthy for.
  6 + *
  7 + * @private
  8 + * @param {Object} object The source object.
  9 + * @param {Function} predicate The function invoked per iteration.
  10 + * @returns {Object} Returns the new object.
  11 + */
  12 +function pickByCallback(object, predicate) {
  13 + var result = {};
  14 + baseForIn(object, function(value, key, object) {
  15 + if (predicate(value, key, object)) {
  16 + result[key] = value;
  17 + }
  18 + });
  19 + return result;
  20 +}
  21 +
  22 +module.exports = pickByCallback;
400-SOURCECODE/AIAHTML5.Admin/node_modules/karma/node_modules/lodash/internal/reEscape.js 0 → 100644
  1 +/** Used to match template delimiters. */
  2 +var reEscape = /<%-([\s\S]+?)%>/g;
  3 +
  4 +module.exports = reEscape;
400-SOURCECODE/AIAHTML5.Admin/node_modules/karma/node_modules/lodash/internal/realNames.js 0 → 100644
  1 +/** Used to lookup unminified function names. */
  2 +var realNames = {};
  3 +
  4 +module.exports = realNames;