mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-06 06:14:53 +00:00
12 lines
308 B
JavaScript
12 lines
308 B
JavaScript
// Copyright 2014 Simon Lydell
|
|
// X11 (“MIT”) Licensed. (See LICENSE.)
|
|
|
|
var fs = require("fs")
|
|
|
|
require("coffee-script/register")
|
|
var regex = require("./regex.coffee")
|
|
|
|
var code = fs.readFileSync("index.js").toString()
|
|
code = code.replace(/\/.+\/.+/, regex.toString())
|
|
fs.writeFileSync("index.js", code)
|