No Description

index.js 7.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. define(['exports', './_setup', './restArguments', './isObject', './isNull', './isUndefined', './isBoolean', './isElement', './isString', './isNumber', './isDate', './isRegExp', './isError', './isSymbol', './isArrayBuffer', './isDataView', './isArray', './isFunction', './isArguments', './isFinite', './isNaN', './isTypedArray', './isEmpty', './isMatch', './isEqual', './isMap', './isWeakMap', './isSet', './isWeakSet', './keys', './allKeys', './values', './pairs', './invert', './functions', './extend', './extendOwn', './defaults', './create', './clone', './tap', './get', './has', './mapObject', './identity', './constant', './noop', './toPath', './property', './propertyOf', './matcher', './times', './random', './now', './escape', './unescape', './templateSettings', './template', './result', './uniqueId', './chain', './iteratee', './partial', './bind', './bindAll', './memoize', './delay', './defer', './throttle', './debounce', './wrap', './negate', './compose', './after', './before', './once', './findKey', './findIndex', './findLastIndex', './sortedIndex', './indexOf', './lastIndexOf', './find', './findWhere', './each', './map', './reduce', './reduceRight', './filter', './reject', './every', './some', './contains', './invoke', './pluck', './where', './max', './min', './shuffle', './sample', './sortBy', './groupBy', './indexBy', './countBy', './partition', './toArray', './size', './pick', './omit', './first', './initial', './last', './rest', './compact', './flatten', './without', './uniq', './union', './intersection', './difference', './unzip', './zip', './object', './range', './chunk', './mixin', './underscore-array-methods', './underscore'], function (exports, _setup, restArguments, isObject, isNull, isUndefined, isBoolean, isElement, isString, isNumber, isDate, isRegExp, isError, isSymbol, isArrayBuffer, isDataView, isArray, isFunction, isArguments, _isFinite, _isNaN, isTypedArray, isEmpty, isMatch, isEqual, isMap, isWeakMap, isSet, isWeakSet, keys, allKeys, values, pairs, invert, functions, extend, extendOwn, defaults, create, clone, tap, get, has, mapObject, identity, constant, noop, toPath, property, propertyOf, matcher, times, random, now, _escape, _unescape, templateSettings, template, result, uniqueId, chain, iteratee, partial, bind, bindAll, memoize, delay, defer, throttle, debounce, wrap, negate, compose, after, before, once, findKey, findIndex, findLastIndex, sortedIndex, indexOf, lastIndexOf, find, findWhere, each, map, reduce, reduceRight, filter, reject, every, some, contains, invoke, pluck, where, max, min, shuffle, sample, sortBy, groupBy, indexBy, countBy, partition, toArray, size, pick, omit, first, initial, last, rest, compact, flatten, without, uniq, union, intersection, difference, unzip, zip, object, range, chunk, mixin, underscoreArrayMethods, underscore) {
  2. // Named Exports
  3. exports.VERSION = _setup.VERSION;
  4. exports.restArguments = restArguments;
  5. exports.isObject = isObject;
  6. exports.isNull = isNull;
  7. exports.isUndefined = isUndefined;
  8. exports.isBoolean = isBoolean;
  9. exports.isElement = isElement;
  10. exports.isString = isString;
  11. exports.isNumber = isNumber;
  12. exports.isDate = isDate;
  13. exports.isRegExp = isRegExp;
  14. exports.isError = isError;
  15. exports.isSymbol = isSymbol;
  16. exports.isArrayBuffer = isArrayBuffer;
  17. exports.isDataView = isDataView;
  18. exports.isArray = isArray;
  19. exports.isFunction = isFunction;
  20. exports.isArguments = isArguments;
  21. exports.isFinite = _isFinite;
  22. exports.isNaN = _isNaN;
  23. exports.isTypedArray = isTypedArray;
  24. exports.isEmpty = isEmpty;
  25. exports.isMatch = isMatch;
  26. exports.isEqual = isEqual;
  27. exports.isMap = isMap;
  28. exports.isWeakMap = isWeakMap;
  29. exports.isSet = isSet;
  30. exports.isWeakSet = isWeakSet;
  31. exports.keys = keys;
  32. exports.allKeys = allKeys;
  33. exports.values = values;
  34. exports.pairs = pairs;
  35. exports.invert = invert;
  36. exports.functions = functions;
  37. exports.methods = functions;
  38. exports.extend = extend;
  39. exports.assign = extendOwn;
  40. exports.extendOwn = extendOwn;
  41. exports.defaults = defaults;
  42. exports.create = create;
  43. exports.clone = clone;
  44. exports.tap = tap;
  45. exports.get = get;
  46. exports.has = has;
  47. exports.mapObject = mapObject;
  48. exports.identity = identity;
  49. exports.constant = constant;
  50. exports.noop = noop;
  51. exports.toPath = toPath;
  52. exports.property = property;
  53. exports.propertyOf = propertyOf;
  54. exports.matcher = matcher;
  55. exports.matches = matcher;
  56. exports.times = times;
  57. exports.random = random;
  58. exports.now = now;
  59. exports.escape = _escape;
  60. exports.unescape = _unescape;
  61. exports.templateSettings = templateSettings;
  62. exports.template = template;
  63. exports.result = result;
  64. exports.uniqueId = uniqueId;
  65. exports.chain = chain;
  66. exports.iteratee = iteratee;
  67. exports.partial = partial;
  68. exports.bind = bind;
  69. exports.bindAll = bindAll;
  70. exports.memoize = memoize;
  71. exports.delay = delay;
  72. exports.defer = defer;
  73. exports.throttle = throttle;
  74. exports.debounce = debounce;
  75. exports.wrap = wrap;
  76. exports.negate = negate;
  77. exports.compose = compose;
  78. exports.after = after;
  79. exports.before = before;
  80. exports.once = once;
  81. exports.findKey = findKey;
  82. exports.findIndex = findIndex;
  83. exports.findLastIndex = findLastIndex;
  84. exports.sortedIndex = sortedIndex;
  85. exports.indexOf = indexOf;
  86. exports.lastIndexOf = lastIndexOf;
  87. exports.detect = find;
  88. exports.find = find;
  89. exports.findWhere = findWhere;
  90. exports.each = each;
  91. exports.forEach = each;
  92. exports.collect = map;
  93. exports.map = map;
  94. exports.foldl = reduce;
  95. exports.inject = reduce;
  96. exports.reduce = reduce;
  97. exports.foldr = reduceRight;
  98. exports.reduceRight = reduceRight;
  99. exports.filter = filter;
  100. exports.select = filter;
  101. exports.reject = reject;
  102. exports.all = every;
  103. exports.every = every;
  104. exports.any = some;
  105. exports.some = some;
  106. exports.contains = contains;
  107. exports.include = contains;
  108. exports.includes = contains;
  109. exports.invoke = invoke;
  110. exports.pluck = pluck;
  111. exports.where = where;
  112. exports.max = max;
  113. exports.min = min;
  114. exports.shuffle = shuffle;
  115. exports.sample = sample;
  116. exports.sortBy = sortBy;
  117. exports.groupBy = groupBy;
  118. exports.indexBy = indexBy;
  119. exports.countBy = countBy;
  120. exports.partition = partition;
  121. exports.toArray = toArray;
  122. exports.size = size;
  123. exports.pick = pick;
  124. exports.omit = omit;
  125. exports.first = first;
  126. exports.head = first;
  127. exports.take = first;
  128. exports.initial = initial;
  129. exports.last = last;
  130. exports.drop = rest;
  131. exports.rest = rest;
  132. exports.tail = rest;
  133. exports.compact = compact;
  134. exports.flatten = flatten;
  135. exports.without = without;
  136. exports.uniq = uniq;
  137. exports.unique = uniq;
  138. exports.union = union;
  139. exports.intersection = intersection;
  140. exports.difference = difference;
  141. exports.transpose = unzip;
  142. exports.unzip = unzip;
  143. exports.zip = zip;
  144. exports.object = object;
  145. exports.range = range;
  146. exports.chunk = chunk;
  147. exports.mixin = mixin;
  148. exports.default = underscore;
  149. Object.defineProperty(exports, '__esModule', { value: true });
  150. });