Package Exports
- globo
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (globo) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
globo 
Turn module ids into global lookups that work in Node and the browser
Install
$ npm install --save globoUsage
var globalize = require('globo');
globo('_');
//=> (typeof window !== "undefined" ? window._ : typeof global !== "undefined" ? global._ : null)API
globo(id) -> string
id
Required
Type: string
A module id.

License
MIT © Ben Drucker