This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const webdav = require('webdav-server'), | |
| path = require('path'), | |
| fs = require('fs'); | |
| function counter(nb, callback, intermediateFn) | |
| { | |
| return function go(error, data) | |
| { | |
| if(nb <= 0) | |
| return; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { | |
| WebDAVServer, | |
| FSManager, | |
| IResource, | |
| SerializedObject, | |
| ResourceType, | |
| SimpleCallback, | |
| Return2Callback, | |
| ReturnCallback, | |
| ResourceChildren, |