Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-async.js « test « rimraf « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c2e0b7be0ef52051eaac0bde25bb3fae7caed37 (plain)
1
2
3
4
5
var rimraf = require("../rimraf")
  , path = require("path")
rimraf(path.join(__dirname, "target"), function (er) {
  if (er) throw er
})