MCPcopy Index your code
hub / github.com/nodejs/node / b

Function b

configure.py:1287–1289  ·  view source on GitHub ↗

Returns the string 'true' if value is truthy, 'false' otherwise.

(value)

Source from the content-addressed store, hash-verified

1285 pprint.pprint(x, indent=2)
1286
1287def b(value):
1288 """Returns the string 'true' if value is truthy, 'false' otherwise."""
1289 return 'true' if value else 'false'
1290
1291def B(value):
1292 """Returns 1 if value is truthy, 0 otherwise."""

Callers 11

configure_mipsFunction · 0.70
configure_zosFunction · 0.70
configure_nodeFunction · 0.70
configure_libraryFunction · 0.70
configure_v8Function · 0.70
configure_opensslFunction · 0.70
configure_sqliteFunction · 0.70
configure_ffiFunction · 0.70
configure_quicFunction · 0.70
configure_intlFunction · 0.70
configure.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected