.idea
node_modules
.bin
@babel
accepts
acorn
any-promise
array-flatten
asap
assert-never
babel-walk
body-parser
bytes
call-bind
character-parser
cidr-regex
constantinople
content-disposition
content-type
cookie
cookie-signature
debug
depd
destroy
doctypes
ee-first
encodeurl
escape-html
etag
express
finalhandler
forwarded
fresh
function-bind
get-intrinsic
get-ip-range
has
has-symbols
has-tostringtag
http-errors
iconv-lite
inherits
ip
ip-address
ipaddr.js
is-core-module
is-expression
is-promise
is-regex
js-stringify
jsbn
jstransformer
local-devices
lodash.find
lodash.max
lodash.merge
lodash.padstart
lodash.repeat
media-typer
merge-descriptors
methods
mime
mime-db
mime-types
ms
mz
negotiator
object-assign
on-finished
parseurl
path-parse
path-to-regexp
ping
promise
proxy-addr
pug
pug-attrs
pug-code-gen
pug-error
pug-filters
pug-lexer
pug-linker
pug-load
pug-parser
pug-runtime
pug-strip-comments
pug-walk
q
qs
range-parser
raw-body
resolve
safe-buffer
safer-buffer
send
serve-static
setprototypeof
sprintf-js
statuses
thenify
thenify-all
to-fast-properties
toidentifier
token-stream
type-is
underscore
amd
_baseCreate.js
_baseIteratee.js
_cb.js
_chainResult.js
_collectNonEnumProps.js
_createAssigner.js
_createEscaper.js
_createIndexFinder.js
_createPredicateIndexFinder.js
_createReduce.js
_createSizePropertyCheck.js
_deepGet.js
_escapeMap.js
_executeBound.js
_flatten.js
_getByteLength.js
_getLength.js
_group.js
_has.js
_hasObjectTag.js
_isArrayLike.js
_isBufferLike.js
_keyInObj.js
_methodFingerprint.js
_optimizeCb.js
_setup.js
_shallowProperty.js
_stringTagBug.js
_tagTester.js
_toBufferView.js
_toPath.js
_unescapeMap.js
after.js
allKeys.js
before.js
bind.js
bindAll.js
chain.js
chunk.js
clone.js
compact.js
compose.js
constant.js
contains.js
countBy.js
create.js
debounce.js
defaults.js
defer.js
delay.js
difference.js
each.js
escape.js
every.js
extend.js
extendOwn.js
filter.js
find.js
findIndex.js
findKey.js
findLastIndex.js
findWhere.js
first.js
flatten.js
functions.js
get.js
groupBy.js
has.js
identity.js
index-default.js
index.js
indexBy.js
indexOf.js
initial.js
intersection.js
invert.js
invoke.js
isArguments.js
isArray.js
isArrayBuffer.js
isBoolean.js
isDataView.js
isDate.js
isElement.js
isEmpty.js
isEqual.js
isError.js
isFinite.js
isFunction.js
isMap.js
isMatch.js
isNaN.js
isNull.js
isNumber.js
isObject.js
isRegExp.js
isSet.js
isString.js
isSymbol.js
isTypedArray.js
isUndefined.js
isWeakMap.js
isWeakSet.js
iteratee.js
keys.js
last.js
lastIndexOf.js
map.js
mapObject.js
matcher.js
max.js
memoize.js
min.js
mixin.js
negate.js
noop.js
now.js
object.js
omit.js
once.js
pairs.js
partial.js
partition.js
pick.js
pluck.js
property.js
propertyOf.js
random.js
range.js
reduce.js
reduceRight.js
reject.js
rest.js
restArguments.js
result.js
sample.js
shuffle.js
size.js
some.js
sortBy.js
sortedIndex.js
tap.js
template.js
templateSettings.js
throttle.js
times.js
toArray.js
toPath.js
underscore-array-methods.js
underscore.js
unescape.js
union.js
uniq.js
uniqueId.js
unzip.js
values.js
where.js
without.js
wrap.js
zip.js
cjs
modules
LICENSE
README.md
package.json
underscore-esm-min.js
underscore-esm-min.js.map
underscore-esm.js
underscore-esm.js.map
underscore-min.js
underscore-min.js.map
underscore-node-f.cjs
underscore-node-f.cjs.map
underscore-node.cjs
underscore-node.cjs.map
underscore-node.mjs
underscore-node.mjs.map
underscore-umd-min.js
underscore-umd-min.js.map
underscore-umd.js
underscore-umd.js.map
underscore.js
unpipe
utils-merge
vary
void-elements
with
.package-lock.json
views
dnsmasq.leases
index.js
package-lock.json
package.json
test.http
test.txt
10 lines
248 B
JavaScript
10 lines
248 B
JavaScript
define(['./partial', './before'], function (partial, before) {
|
|
|
|
// Returns a function that will be executed at most one time, no matter how
|
|
// often you call it. Useful for lazy initialization.
|
|
var once = partial(before, 2);
|
|
|
|
return once;
|
|
|
|
});
|