Run example
npm run import -- "create import cache"
create import cache
var importer = require('../Core')
var {createCellCache, importsCache} = importer.import("create cell cache",
"imports cache")
var {getImports} = importer.import("get imports from source")
function createImportCache(search) {
var cacheCell = importer.interpret('imports cache')
return createCellCache(search, importsCache, cacheCell, getImports)
}
module.exports = {
createImportCache
}