mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 15:38:06 -05:00
14 lines
236 B
TypeScript
14 lines
236 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];
|
|
}
|