Skip to content

Commit

Permalink
Merge pull request #11 from akdilsiz/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
akdilsiz committed Oct 3, 2023
2 parents d48ee2c + 5824c10 commit 3cb403b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fs-shadow-js",
"version": "1.0.8",
"version": "1.0.9",
"description": "FS-Shadow Javascript",
"main": "index.js",
"type": "commonjs",
Expand Down
10 changes: 7 additions & 3 deletions watcherVirtual.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,17 @@ class VirtualTree {
this.Path = path
this.ParentPath = parentPath
}
Handler(event = new Event(), extra = new ExtraPayload()) {

/**
* params event = new Event(), extra = new ExtraPayload()
*/
Handler(event, extra) {
let error = null,
node = new FileNode(),
bExtra = new ExtraPayload(),
bExtra = null,
response

if (extra.UUID.length) {
if (extra) {
bExtra = extra
}

Expand Down

0 comments on commit 3cb403b

Please sign in to comment.