WIP: use es-modules

This commit is contained in:
j 2026-02-16 22:16:19 +01:00
commit 9c3450947b
146 changed files with 722 additions and 62 deletions

14
source/Ox/js/Namespace.js Normal file
View file

@ -0,0 +1,14 @@
'use strict';
/*@
Ox <f> The `Ox` object
See `Ox.wrap` for details.
(value) -> <o> wrapped value
value <*> Any value
@*/
export const Ox = function(value) {
return Ox.wrap(value)
};
export default Ox;