Comparing version 0.4.0 to 0.4.1
{ | ||
"name": "walkdir", | ||
"description": "Find files simply. Walks a directory tree emitting events based on what it finds. Presents a familiar callback/emitter/a+sync interface. Walk a tree of any depth.", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"author": "Ryan Day <soldair@gmail.com>", | ||
@@ -6,0 +6,0 @@ "keywords": [ |
@@ -65,2 +65,5 @@ import * as walkdir from './walkdir'; | ||
let l = walkdir.sync('',(path)=>{ | ||
path.substr | ||
}) | ||
l.splice(0) |
@@ -180,2 +180,3 @@ import { EventEmitter } from "events"; | ||
export function sync(path:string,options?:walkdir.WalkOptions&{return_object?:boolean},eventListener?:walkdir.WalkEventListener):string[]|{[path:string]:Stats}; | ||
export function sync(path:string,eventListener?:walkdir.WalkEventListener):string[]; | ||
@@ -182,0 +183,0 @@ // always sync:false. a promise of whatever is the same as walkdir. |
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
41215
947