u
Version:
A minimalist, functional utility library designed for embedding into another small program.
19 lines (14 loc) • 368 B
JavaScript
// Exports
var ujs =
(external || _window)['ujs'] =
(internal || {})['util'] = {};
ujs['slice'] = slice;
ujs['strip'] = strip;
ujs['reduce'] = reduce;
ujs['map'] = map;
ujs['toKV'] = toKV;
ujs['fromKV'] = fromKV;
ujs['extend'] = extend;
ujs['bind'] = bind;
ujs['setCookie'] = setCookie;
})($INTERNAL, $EXTERNAL, $ENVDICT);