source: frontend/node_modules/underscore/amd/index.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

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