mirror of https://github.com/nodejs/node.git
8 lines
210 B
JavaScript
8 lines
210 B
JavaScript
|
var init = require('../init-package-json.js')
|
||
|
var path = require('path')
|
||
|
var dir = process.cwd()
|
||
|
|
||
|
init(dir, 'file that does not exist', function (err, data) {
|
||
|
if (!err) console.log('written successfully')
|
||
|
})
|