squint-cljs 0.0.1 → 0.0.2

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/core.js CHANGED
@@ -1107,3 +1107,7 @@ export function false_QMARK_(x) {
1107
1107
  export function some_QMARK_(x) {
1108
1108
  return !(x === null || x === undefined);
1109
1109
  }
1110
+
1111
+ export function boolean(x) {
1112
+ return !!x;
1113
+ }