blob: 39ae84e9eadccccffa6c4099efbf3c646e58b2b3 [file] [log] [blame]
var string_simple = require("string_simple");
// Test unicode string
var str = "olé";
var copy = string_simple.copy_string(str);
if (str !== copy) {
throw "Error: copy is not equal: original="+str+", copy="+copy;
}