squint-cljs 0.1.23 → 0.2.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "squint-cljs",
3
3
  "type": "module",
4
4
  "sideEffects": false,
5
- "version": "0.1.23",
5
+ "version": "0.2.25",
6
6
  "files": [
7
7
  "core.js",
8
8
  "src/squint/core.js",
@@ -1364,3 +1364,7 @@ export function compare(x, y) {
1364
1364
  }
1365
1365
  }
1366
1366
  }
1367
+
1368
+ export function to_array(aseq) {
1369
+ return into_array(aseq);
1370
+ }
package/string.js CHANGED
@@ -32,3 +32,7 @@ export function trim(s) {
32
32
  export function split(s, re) {
33
33
  return s.split(re);
34
34
  }
35
+
36
+ export function starts_with_QMARK_(s, substr) {
37
+ return s.startsWith(substr);
38
+ }