mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-17 22:39:56 +02:00
Refactor code
This commit is contained in:
@@ -1,26 +0,0 @@
|
||||
'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
|
Reference in New Issue
Block a user