Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| 'use strict' | |
| var mzfs = require('mz/fs') | |
| var fsExtra = require('fs-extra') | |
| var Promise = require('any-promise') | |
| var thenifyAll = require('thenify-all') | |
| var slice = Array.prototype.slice | |
| // thenify-all for all fs-extra that make sense to be promises | |
| var fsExtraKeys = [ | |
| 'copy', | |
| 'emptyDir', | |
| 'ensureFile', | |
| 'ensureDir', | |
| 'ensureLink', | |
| 'ensureSymlink', | |
| 'mkdirs', | |
| 'move', | |
| 'outputFile', | |
| 'outputJson', | |
| 'readJson', | |
| 'remove', | |
| 'writeJson', | |
| // aliases | |
| 'createFile', | |
| 'createLink', | |
| 'createSymlink', | |
| 'emptydir', | |
| 'mkdirp', | |
| 'readJSON', | |
| 'outputJSON', | |
| 'writeJSON' | |
| ] | |
| thenifyAll.withCallback(fsExtra, exports, fsExtraKeys) | |
| // Delegate all normal fs to mz/fs | |
| // (this overwrites anything proxies directly above) | |
| var mzKeys = [ | |
| 'rename', | |
| 'ftruncate', | |
| 'chown', | |
| 'fchown', | |
| 'lchown', | |
| 'chmod', | |
| 'fchmod', | |
| 'stat', | |
| 'lstat', | |
| 'fstat', | |
| 'link', | |
| 'symlink', | |
| 'readlink', | |
| 'realpath', | |
| 'unlink', | |
| 'rmdir', | |
| 'mkdir', | |
| 'mkdtemp', | |
| 'readdir', | |
| 'close', | |
| 'open', | |
| 'utimes', | |
| 'futimes', | |
| 'fsync', | |
| 'fdatasync', | |
| 'write', | |
| 'read', | |
| 'readFile', | |
| 'writeFile', | |
| 'appendFile', | |
| 'access', | |
| 'truncate', | |
| 'exists' | |
| ] | |
| mzKeys.forEach(function(key){ | |
| exports[key] = mzfs[key] | |
| }) |