mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-04-18 03:00:27 -04:00
14 lines
262 B
TypeScript
14 lines
262 B
TypeScript
// test_output! [["abc"," abc"," abc"," a b c",""]]
|
|
|
|
export default function () {
|
|
const trimEndTests = [
|
|
"abc ".trimEnd(),
|
|
" abc".trimEnd(),
|
|
" abc ".trimEnd(),
|
|
" a b c ".trimEnd(),
|
|
" ".trimEnd(),
|
|
];
|
|
|
|
return [trimEndTests];
|
|
}
|