squint-cljs 0.0.2 → 0.0.4

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.
Files changed (4) hide show
  1. package/core.js +13 -1
  2. package/lib/cli.js +918 -918
  3. package/lib/compiler.js +219 -216
  4. package/package.json +1 -1
package/core.js CHANGED
@@ -1108,6 +1108,18 @@ export function some_QMARK_(x) {
1108
1108
  return !(x === null || x === undefined);
1109
1109
  }
1110
1110
 
1111
- export function boolean(x) {
1111
+ export function boolean$(x) {
1112
1112
  return !!x;
1113
1113
  }
1114
+
1115
+ export function zero_QMARK_(x) {
1116
+ return x === 0;
1117
+ }
1118
+
1119
+ export function neg_QMARK_(x) {
1120
+ return x < 0;
1121
+ }
1122
+
1123
+ export function pos_QMARK_(x) {
1124
+ return x > 0;
1125
+ }