mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 07:28:03 -05:00
14 lines
235 B
TypeScript
14 lines
235 B
TypeScript
// test_output! [["abc","abc","abc","a b c",""]]
|
|
|
|
export default function () {
|
|
const trimTests = [
|
|
" abc".trim(),
|
|
"abc ".trim(),
|
|
" abc ".trim(),
|
|
" a b c ".trim(),
|
|
" ".trim(),
|
|
];
|
|
|
|
return [trimTests];
|
|
}
|