WIP: use es-modules
This commit is contained in:
parent
ec5b050496
commit
9c3450947b
146 changed files with 722 additions and 62 deletions
14
source/Ox/js/Namespace.js
Normal file
14
source/Ox/js/Namespace.js
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue