@balena/sbvr-types
Advanced tools
Comparing version 9.1.0-build-add-case-insenstive-equal-to-a71dd37c2d12ac1260cc15eddf32f0e270b7933f-1 to 9.1.0-build-add-case-insenstive-equal-to-c6414b8b53cb6935e2a496a31d29c7e90efefe38-1
@@ -10,3 +10,3 @@ # Change Log | ||
* Add `is case insensitive equal to` for Text types [Otavio Jacobi] | ||
* Add `is case insensitively equal to` for Text types [Otavio Jacobi] | ||
@@ -13,0 +13,0 @@ # v9.0.2 |
@@ -21,6 +21,6 @@ "use strict"; | ||
...TypeUtils.nativeFactTypeTemplates.equality, | ||
'is case insensitive equal to': (from, to) => [ | ||
'is case insensitively equal to': (from, to) => [ | ||
'Equals', | ||
['ToLower', from], | ||
['ToLower', to], | ||
['Lower', from], | ||
['Lower', to], | ||
], | ||
@@ -27,0 +27,0 @@ 'starts with': (from, to) => ['StartsWith', from, to], |
{ | ||
"name": "@balena/sbvr-types", | ||
"version": "9.1.0-build-add-case-insenstive-equal-to-a71dd37c2d12ac1260cc15eddf32f0e270b7933f-1", | ||
"version": "9.1.0-build-add-case-insenstive-equal-to-c6414b8b53cb6935e2a496a31d29c7e90efefe38-1", | ||
"description": "SBVR type definitions.", | ||
@@ -54,4 +54,4 @@ "main": "out", | ||
"versionist": { | ||
"publishedAt": "2024-10-24T13:08:10.576Z" | ||
"publishedAt": "2024-10-24T15:11:23.615Z" | ||
} | ||
} |
@@ -31,6 +31,6 @@ import type { | ||
...TypeUtils.nativeFactTypeTemplates.equality, | ||
'is case insensitive equal to': (from, to): EqualsNode => [ | ||
'is case insensitively equal to': (from, to): EqualsNode => [ | ||
'Equals', | ||
['ToLower', from], | ||
['ToLower', to], | ||
['Lower', from], | ||
['Lower', to], | ||
], | ||
@@ -37,0 +37,0 @@ 'starts with': (from, to): StartsWithNode => ['StartsWith', from, to], |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
153111