11 lines
374 B
JavaScript
11 lines
374 B
JavaScript
/* eslint-env commonjs */
|
|
import { ono } from "./singleton";
|
|
export { Ono } from "./constructor";
|
|
export * from "./types";
|
|
export { ono };
|
|
export default ono;
|
|
// CommonJS default export hack
|
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
module.exports = Object.assign(module.exports.default, module.exports);
|
|
}
|
|
//# sourceMappingURL=index.js.map
|