jiangchengfeiyi-xiaochengxu/node_modules/mathjs/bin/repl.js
2025-01-02 11:13:50 +08:00

11 lines
230 B
JavaScript

#!/usr/bin/env node
/*
* This simply preloads mathjs and drops you into a REPL to
* help interactive debugging.
**/
global.math = require('../lib/browser/math.js')
const repl = require('repl')
repl.start({ useGlobal: true })