mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
19 lines
504 B
CoffeeScript
19 lines
504 B
CoffeeScript
# This (javascript) file is generated from lib/coffee_script/narwhal/loader.coffee
|
|
|
|
coffeescript: null
|
|
factories: {}
|
|
|
|
loader: {
|
|
|
|
# Reload the coffee-script environment from source.
|
|
reload: topId, path =>
|
|
coffeescript ||= require('coffee-script')
|
|
factories[topId]: => coffeescript.makeNarwhalFactory(path)
|
|
|
|
# Ensure that the coffee-script environment is loaded.
|
|
load: topId, path =>
|
|
factories[topId] ||= this.reload(topId, path)
|
|
|
|
}
|
|
|
|
require.loader.loaders.unshift([".coffee", loader])
|