diff options
Diffstat (limited to 'lib/webcals/sax/propstat.js')
-rw-r--r-- | lib/webcals/sax/propstat.js | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/webcals/sax/propstat.js b/lib/webcals/sax/propstat.js deleted file mode 100644 index 03bedaa..0000000 --- a/lib/webcals/sax/propstat.js +++ /dev/null @@ -1,30 +0,0 @@ -(function(module, ns) { - var Responder = ns.require('responder'); - - function Propstat(sax, complete) { - - function onopen() { - - } - - function onclose() { - - } - - function ontext() { - - } - - sax.on('tagopen', onopen); - sax.on('tagclose', ontext); - sax.on('text', ontext); - } - - module.exports = Propstat; - -}.apply( - this, - (this.CalDav) ? - [CalDav('sax/propstat'), CalDav] : - [module, require('../webcals')] -)); |