schedulejs
Version:
Schedule tasks, meetings, appointments, etc
18 lines (14 loc) • 447 B
JavaScript
/**
* Schedule.js 0.1.0
* (c) 2013 Bill, BunKat LLC.
* Later is freely distributable under the MIT license.
* For all details and documentation:
* http://bunkat.github.com/later
*/
if(typeof module !== 'undefined' && module.exports) {
this.later = require('later');
}
schedule = (function(later) {
"use strict";
var schedule = {version: "0.6.3"}; // semver
if(!later) throw new Error('Laterjs must be included before Schedulejs.');