1'use strict' 2module.exports = wrappedMove 3 4const fs = require('graceful-fs') 5const move = require('move-concurrently') 6const Bluebird = require('bluebird') 7 8const options = {fs: fs, Promise: Bluebird, maxConcurrency: 4} 9 10function wrappedMove (from, to) { 11 return move(from, to, options) 12} 13