UNPKG

operations

Version:

A library for managing complex chains of asynchronous operations in Javascript.

10 lines 191 B
/** * Shim to enable access to underscore library. * @returns {*} */ function getUnderscore() { if (typeof window != 'undefined') { return window['_']; } return null; }