@rip-lang/api 0.7.6 → 0.7.7
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/api.rip +1 -1
- package/package.json +1 -1
package/api.rip
CHANGED
|
@@ -592,6 +592,6 @@ export read = (keyOrTag = null, tagOrMiss = null, missOrNil = null) ->
|
|
|
592
592
|
else
|
|
593
593
|
return miss?() if typeof miss is 'function'
|
|
594
594
|
return null if miss is '' or not miss? # Empty string or null/undefined → null
|
|
595
|
-
miss # Return 0, false, etc. as-is
|
|
595
|
+
return miss # Return 0, false, etc. as-is
|
|
596
596
|
|
|
597
597
|
v
|