-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
81 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
define((require, exports) => { | ||
const bind = require('lodash-amd/bind'); | ||
const chain = require('lodash-amd/chain'); | ||
const cloneDeep = require('lodash-amd/cloneDeep'); | ||
const curry = require('lodash-amd/curry'); | ||
const debounce = require('lodash-amd/debounce'); | ||
const difference = require('lodash-amd/difference'); | ||
const differenceWith = require('lodash-amd/differenceWith'); | ||
const each = require('lodash-amd/each'); | ||
const eq = require('lodash-amd/eq'); | ||
const extend = require('lodash-amd/extend'); | ||
const find = require('lodash-amd/find'); | ||
const first = require('lodash-amd/first'); | ||
const flatten = require('lodash-amd/flatten'); | ||
const get = require('lodash-amd/get'); | ||
const has = require('lodash-amd/has'); | ||
const intersection = require('lodash-amd/intersection'); | ||
const isEmpty = require('lodash-amd/isEmpty'); | ||
const isFinite = require('lodash-amd/isFinite'); | ||
const isObject = require('lodash-amd/isObject'); | ||
const keys = require('lodash-amd/keys'); | ||
const map = require('lodash-amd/map'); | ||
const max = require('lodash-amd/max'); | ||
const merge = require('lodash-amd/merge'); | ||
const omit = require('lodash-amd/omit'); | ||
const once = require('lodash-amd/once'); | ||
const pick = require('lodash-amd/pick'); | ||
const setWith = require('lodash-amd/setWith'); | ||
const some = require('lodash-amd/some'); | ||
const sortBy = require('lodash-amd/sortBy'); | ||
const toPairs = require('lodash-amd/toPairs'); | ||
const reduce = require('lodash-amd/reduce'); | ||
const sum = require('lodash-amd/sum'); | ||
const uniq = require('lodash-amd/uniq'); | ||
const unset = require('lodash-amd/unset'); | ||
const values = require('lodash-amd/values'); | ||
const without = require('lodash-amd/without'); | ||
|
||
return { | ||
bind, | ||
chain, | ||
cloneDeep, | ||
curry, | ||
debounce, | ||
difference, | ||
each, | ||
eq, | ||
extend, | ||
find, | ||
first, | ||
flatten, | ||
get, | ||
has, | ||
intersection, | ||
isEmpty, | ||
isFinite, | ||
isObject, | ||
keys, | ||
map, | ||
max, | ||
merge, | ||
omit, | ||
once, | ||
pick, | ||
setWith, | ||
some, | ||
sortBy, | ||
toPairs, | ||
reduce, | ||
sum, | ||
uniq, | ||
unset, | ||
values, | ||
without | ||
}; | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters