1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-03-20 12:10:52 +00:00
2018-08-19 14:42:22 -04:00

8 lines
222 B
JavaScript

exports.new_string_object = () => new String("hi");
exports.get_replacer_function = function() {
return function upperToHyphenLower(match, offset, string) {
return (offset > 0 ? '-' : '') + match.toLowerCase();
};
};