Files
skills-here-run-place/node_modules/is-what/dist/isEmptyString.js
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

5 lines
111 B
JavaScript

/** Returns whether the payload is '' */
export function isEmptyString(payload) {
return payload === '';
}