Files

21 lines
505 B
JavaScript
Raw Permalink Normal View History

2024-10-19 04:17:46 +09:00
/**
* This module is the JS implementation of the `reverser` WIT world
*/
/**
* The Javascript export below represents the export of the `reverse` interface,
* which which contains `reverse-string` as it's primary exported function.
*/
export const reverse = {
/**
* This Javascript will be interpreted by `jco` and turned into a
* WebAssembly binary with a single export (this `reverse` function).
*/
reverseString(s) {
return s.split("")
.reverse()
.join("");
}
};