29 lines
951 B
Text
29 lines
951 B
Text
/* 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 {
|
|
datascript = definition();
|
|
}
|
|
})(function () {
|
|
return function () {
|