mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-09-08 15:57:21 +00:00
push all website files
This commit is contained in:
12
website/node_modules/npm/lib/utils/move.js
generated
vendored
Normal file
12
website/node_modules/npm/lib/utils/move.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
'use strict'
|
||||
module.exports = wrappedMove
|
||||
|
||||
const fs = require('graceful-fs')
|
||||
const move = require('move-concurrently')
|
||||
const Bluebird = require('bluebird')
|
||||
|
||||
const options = {fs: fs, Promise: Bluebird, maxConcurrency: 4}
|
||||
|
||||
function wrappedMove (from, to) {
|
||||
return move(from, to, options)
|
||||
}
|
Reference in New Issue
Block a user