This commit is contained in:
Michael Teeuw
2016-04-20 11:32:48 +02:00
parent 6fdcd7f7e9
commit 287452169b
24 changed files with 3519 additions and 22 deletions

View File

@@ -0,0 +1,8 @@
module.exports = require('./ical')
var node = require('./node-ical')
// Copy node functions across to exports
for (var i in node){
module.exports[i] = node[i]
}