Source: apc-abstract-heir/lib/file/index.js

/**
 * File module.
 * @namespace lib.file
 * @author Taka Okunishi
 *
 */

var prototype = require('./_prototype.js');
/**
 * Define an object property getter to access prototype property.
 * @private
 */
function getPrototypeProperty (key) {
    return {
        enumerable: true,
        get: function () {
            return prototype[key];
        }
    };
}

// Export prototype properties with lazy loading.
Object.defineProperties(exports, {
    copyDir: getPrototypeProperty('copyDir'),
    copyFile: getPrototypeProperty('copyFile'),
    expandGlob: getPrototypeProperty('expandGlob'),
    forceUnlink: getPrototypeProperty('forceUnlink'),
    ignoreFilter: getPrototypeProperty('ignoreFilter'),
    loadHbsTmpl: getPrototypeProperty('loadHbsTmpl'),
    matchesGlob: getPrototypeProperty('matchesGlob'),
    mkdirP: getPrototypeProperty('mkdirP'),
    prepareCleanDir: getPrototypeProperty('prepareCleanDir'),
    readdirRecursive: getPrototypeProperty('readdirRecursive'),
    readdirRecursiveSync: getPrototypeProperty('readdirRecursiveSync'),
    relativeSymlink: getPrototypeProperty('relativeSymlink'),
    rmdirRecursive: getPrototypeProperty('rmdirRecursive'),
    writeReadonlyFile: getPrototypeProperty('writeReadonlyFile')

});