Pipeline of string keywords appears to skip intermediate options
fnimick opened this issue ยท 2 comments
fnimick commented
Report a bug
๐ Search Terms
string, keywords, string.lower, string.trim, case
๐งฉ Context
OS: macOS 15.0
CPU: (10) arm64 Apple M1 Pro
Memory: 92.36 MB / 16.00 GB
Shell: 5.9 - /bin/zsh
Binaries:
Node: 20.13.1 - ~/.asdf/installs/nodejs/20.13.1/bin/node
Yarn: 1.22.19 - ~/.yarn/bin/yarn
npm: 10.5.2 - ~/.asdf/plugins/nodejs/shims/npm
pnpm: 9.7.0 - ~/.asdf/shims/pnpm
npmPackages:
arktype: ^2.0.0-rc.12 => 2.0.0-rc.12
typescript: ^5.5.4 => 5.5.4
๐งโ๐ป Repro
type('string.lower').to('string.trim').to("'success'")('Success')
type('string.lower').to('string.trim').to("'success'")('success ')
type('string.trim').to('string.lower').to("'success'")('Success')
type('string.trim').to('string.lower').to("'success'")('success ')
It appears that the intermediate type does not take effect.
fnimick commented
It also seems to happen with pipe:
type('string.trim').pipe(type('string.lower'), type('string'))('Foo ')
I expect this to return 'foo'
, but it errors instead.
ssalbdivad commented
Fixed in 2.0.0-rc.13