mirror of
https://github.com/betagouv/mon-entreprise
synced 2025-02-09 01:45:03 +00:00
6 lines
120 B
JavaScript
6 lines
120 B
JavaScript
|
import R from 'ramda'
|
||
|
|
||
|
export let val = node => node.nodeValue
|
||
|
|
||
|
export let anyNull = R.any(R.pipe(val, R.equals(null)))
|