UNPKG

bm_scaffold_async_router

Version:

本木前端脚手架-异步路由版

9 lines (7 loc) 246 B
// utility for generating a uid for each component file // used in scoped CSS rewriting var hash = require('hash-sum') var cache = Object.create(null) module.exports = function genId (file) { return cache[file] || (cache[file] = hash(file)) }