mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-12 23:18:03 -05:00
14 lines
308 B
TypeScript
14 lines
308 B
TypeScript
//! test_output([["abc","xyz","a1b2c3","hello world","áéíóú"]])
|
|
|
|
export default function () {
|
|
const toLowerCaseTests = [
|
|
"ABC".toLowerCase(),
|
|
"XYZ".toLowerCase(),
|
|
"A1B2C3".toLowerCase(),
|
|
"Hello World".toLowerCase(),
|
|
"ÁÉÍÓÚ".toLowerCase(),
|
|
];
|
|
|
|
return [toLowerCaseTests];
|
|
}
|