index.js 650 B

1234567891011121314151617181920
  1. /**
  2. * Lo-Dash 2.4.1 (Custom Build) <http://lodash.com/>
  3. * Build: `lodash modularize modern exports="npm" -o ./npm/`
  4. * Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/>
  5. * Based on Underscore.js 1.5.2 <http://underscorejs.org/LICENSE>
  6. * Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
  7. * Available under MIT license <http://lodash.com/license>
  8. */
  9. /** Used to determine if values are of the language type Object */
  10. var objectTypes = {
  11. 'boolean': false,
  12. 'function': true,
  13. 'object': true,
  14. 'number': false,
  15. 'string': false,
  16. 'undefined': false
  17. };
  18. module.exports = objectTypes;