![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@wkovacs64/booleanize
Advanced tools
A small utility to coerce a value to its boolean equivalent.
npm install @wkovacs64/booleanize
The primary purpose of this package is to deal with environment variables
received as strings. For example, SOME_CONDITIONAL=false
will be truthy if you
just pass it to the Boolean
constructor as it comes through as a non-empty
string. Instead, pass it to booleanize
and you will get the value back that I
expect. Please note that it may not be the value YOU expect, but I created this
primarily for myself. 🙂
Basically, the following strings are considered falsy:
'null'
'undefined'
'false'
'no'
'0'
# .env
SOME_CONDITIONAL=false
import { booleanize } from '@wkovacs64/booleanize';
Boolean(process.env.SOME_CONDITIONAL); // true 😕
booleanize(process.env.SOME_CONDITIONAL); // false 😊
This module is distributed under the MIT License.
FAQs
Small utility to coerce a value to its boolean equivalent
We found that @wkovacs64/booleanize demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.