-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
efc7a6f
commit dc6e904
Showing
9 changed files
with
901 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
|
||
/* | ||
Project: ziko-something | ||
Author: | ||
Date : Sun Oct 06 2024 20:49:36 GMT+0100 (UTC+01:00) | ||
*/ | ||
|
||
(function (global, factory) { | ||
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('ziko')) : | ||
typeof define === 'function' && define.amd ? define(['exports', 'ziko'], factory) : | ||
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.ZikoSomething = {}, global.ziko)); | ||
})(this, (function (exports, ziko) { 'use strict'; | ||
|
||
const A=1; | ||
const B=2; | ||
const ZikoSomething = { | ||
A, | ||
B | ||
}; | ||
|
||
Object.defineProperty(exports, "text", { | ||
enumerable: true, | ||
get: function () { return ziko.text; } | ||
}); | ||
exports.A = A; | ||
exports.B = B; | ||
exports.default = ZikoSomething; | ||
|
||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
|
||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/* | ||
Project: ziko-something | ||
Author: | ||
Date : Sun Oct 06 2024 20:49:36 GMT+0100 (UTC+01:00) | ||
*/ | ||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("ziko")):"function"==typeof define&&define.amd?define(["exports","ziko"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).ZikoSomething={},e.ziko)}(this,(function(e,t){"use strict";const o={A:1,B:2};Object.defineProperty(e,"text",{enumerable:!0,get:function(){return t.text}}),e.A=1,e.B=2,e.default=o,Object.defineProperty(e,"__esModule",{value:!0})})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
/* | ||
Project: ziko-something | ||
Author: | ||
Date : Sun Oct 06 2024 20:49:36 GMT+0100 (UTC+01:00) | ||
*/ | ||
|
||
export { text } from 'ziko'; | ||
|
||
const A=1; | ||
const B=2; | ||
const ZikoSomething = { | ||
A, | ||
B | ||
}; | ||
|
||
export { A, B, ZikoSomething as default }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
/* | ||
Project: ziko-something | ||
Author: | ||
Date : Sun Oct 06 2024 20:49:36 GMT+0100 (UTC+01:00) | ||
*/ | ||
|
||
export { text } from 'ziko'; | ||
|
||
const A=1; | ||
const B=2; | ||
const ZikoSomething = { | ||
A, | ||
B | ||
}; | ||
|
||
export { A, B, ZikoSomething as default }; |
Oops, something went wrong.