mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-08-30 21:56:43 +02:00
Fix all code style issues
This commit is contained in:
@@ -1,19 +1,19 @@
|
||||
'use strict'
|
||||
|
||||
var Stream = require('stream')
|
||||
var Path = require('path')
|
||||
// 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
|
||||
}
|
||||
}
|
||||
// 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')
|
||||
|
Reference in New Issue
Block a user