New style docs

This commit is contained in:
knsv
2015-09-24 08:04:06 +02:00
parent 189325508e
commit 4536930e17
50 changed files with 4685 additions and 261 deletions

View File

@@ -0,0 +1,27 @@
'use strict';
var Stream = require('stream');
var Path = require('path');
function gulpRename(obj) {
var stream = new Stream.Transform({objectMode: true});
function parsePath(path) {
var extname = Path.extname(path);
return {
dirname: Path.dirname(path),
basename: Path.basename(path, extname),
extname: extname
};
}
stream._transform = function (file, unused, callback) {
console.log('a file');
callback(null, file);
};
return stream;
}
module.exports = gulpRename;