mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-12 23:18:03 -05:00
14 lines
263 B
TypeScript
14 lines
263 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];
|
|
}
|