Comparing version 0.2.1 to 0.2.2
@@ -7,3 +7,3 @@ "use strict"; | ||
var rx = /(.*)\{([^#\{\}]*)(#+)([^#\{\}]*)\}(.*)/; | ||
var rxFileParts = /(.*)\{([^#\{\}]*)(#+)([^#\{\}]*)\}(.*)/; | ||
@@ -82,3 +82,3 @@ var defaultDirMode = parseInt("0777", 8) & (~process.umask()); | ||
var fileParts = rx.exec(fileName); | ||
var fileParts = rxFileParts.exec(fileName); | ||
@@ -85,0 +85,0 @@ if(!fileParts) { |
{ | ||
"name": "fsu", | ||
"version": "0.2.1", | ||
"description": "Unique file name with streams support", | ||
"license" : "MIT", | ||
"keywords": ["file", "fs", "unique", "counter", "filename", "stream"], | ||
"author": "Alexey Novikov (http://2dubs.com)", | ||
"private": false, | ||
"engines": { | ||
"node": ">0.10.0", | ||
"iojs": ">1.0.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:velocityzen/fsu.git" | ||
}, | ||
"main": "./index" | ||
"name": "fsu", | ||
"version": "0.2.2", | ||
"description": "Unique file name with streams support", | ||
"license": "MIT", | ||
"keywords": [ | ||
"file", | ||
"fs", | ||
"unique", | ||
"counter", | ||
"filename", | ||
"stream" | ||
], | ||
"author": "Alexey Novikov (http://2dubs.com)", | ||
"private": false, | ||
"engines": { | ||
"node": ">0.10.0", | ||
"iojs": ">1.0.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:velocityzen/fsu.git" | ||
}, | ||
"main": "./index" | ||
} |
@@ -1,2 +0,2 @@ | ||
#fsu (fs unique) | ||
# fsu (fs unique) | ||
Unique filenames with streams support | ||
@@ -6,3 +6,3 @@ | ||
##Instalation | ||
## Instalation | ||
`npm install fsu` | ||
@@ -9,0 +9,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7490