PATH:
usr
/
local
/
lib
/
node_modules
/
gulp
/
node_modules
/
vinyl-fs
/
lib
/
src
'use strict'; var through = require('through2'); function prepareRead(optResolver) { function normalize(file, enc, callback) { var since = optResolver.resolve('since', file); // Skip this file if since option is set and current file is too old if (file.stat && file.stat.mtime <= since) { return callback(); } return callback(null, file); } return through.obj(normalize); } module.exports = prepareRead;
[+]
..
[-] resolve-symlinks.js
[edit]
[-] index.js
[edit]
[-] options.js
[edit]
[-] sourcemap.js
[edit]
[+]
read-contents
[-] wrap-vinyl.js
[edit]
[-] prepare.js
[edit]