mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-06-08 14:34:13 +08:00
8 lines
181 B
JavaScript
8 lines
181 B
JavaScript
const nodeFns = require("./nodeFns")
|
|
window._ = require("lodash")
|
|
window.utools = require("./utoolsLite")()
|
|
|
|
Object.keys(nodeFns).forEach(key => {
|
|
window[key] = nodeFns[key]
|
|
})
|