@jsenv/filesystem
Advanced tools
Comparing version 4.8.2 to 4.9.0
{ | ||
"name": "@jsenv/filesystem", | ||
"version": "4.8.2", | ||
"version": "4.9.0", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -62,3 +62,6 @@ // tslint:disable:ordered-imports | ||
export { moveDirectoryContent } from "./move/move_directory_content.js"; | ||
export { moveFile } from "./move/move_file.js"; | ||
export { moveEntry } from "./move/move_entry.js"; | ||
export { moveFileSync } from "./move/move_file_sync.js"; | ||
export { moveEntrySync } from "./move/move_entry_sync.js"; | ||
@@ -65,0 +68,0 @@ // copy |
import { removeEntrySync } from "./remove_entry_sync.js"; | ||
export const removeFileSync = (url, options) => { | ||
return removeEntrySync(url, options); | ||
removeEntrySync(url, options); | ||
}; |
import { removeEntry } from "./remove_entry.js"; | ||
export const removeFile = (url, options) => { | ||
return removeEntry(url, options); | ||
export const removeFile = async (url, options) => { | ||
await removeEntry(url, options); | ||
}; |
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
136795
75
3983