UNPKG

230 BJavaScriptView Raw
1#!/usr/bin/env node
2
3/*
4 * This simply preloads mathjs and drops you into a REPL to
5 * help interactive debugging.
6 **/
7global.math = require('../lib/browser/math.js')
8const repl = require('repl')
9
10repl.start({ useGlobal: true })