2016-07-06 01:13:29 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
// Datomish 0.1.0-SNAPSHOT
|
|
|
|
|
|
|
|
(function (definition) {
|
|
|
|
// This file will function properly as a <script> tag, or a module
|
|
|
|
// using CommonJS and NodeJS or RequireJS module formats.
|
|
|
|
|
|
|
|
// Wrapper gratefully adapted from:
|
|
|
|
// https://github.com/kriskowal/q/blob/v1/q.js
|
|
|
|
// https://github.com/swannodette/mori/blob/master/support/wrapper.js
|
|
|
|
// https://github.com/tonsky/datascript/blob/master/release-js/wrapper.js
|
|
|
|
|
|
|
|
// CommonJS
|
|
|
|
if (typeof exports === "object") {
|
|
|
|
module.exports = definition();
|
|
|
|
|
|
|
|
// RequireJS
|
|
|
|
} else if (typeof define === "function" && define.amd) {
|
|
|
|
define(definition);
|
|
|
|
|
|
|
|
// <script>
|
|
|
|
} else {
|
2016-07-08 18:23:04 +00:00
|
|
|
datomish = definition();
|
2016-07-06 01:13:29 +00:00
|
|
|
}
|
|
|
|
})(function () {
|
|
|
|
return function () {
|
2016-09-08 17:01:59 +00:00
|
|
|
|
|
|
|
// Monkeypatch setTimeout so that the Closure Compiler
|
|
|
|
// output can use it in a Sandbox context.
|
|
|
|
var { setTimeout } = require("sdk/timers");
|
|
|
|
this.setTimeout = setTimeout;
|