All @lilith/* packages should publish to forge.nasty.sh only. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
5 lines
137 B
JavaScript
5 lines
137 B
JavaScript
'use strict';
|
|
|
|
module.exports = function isStringOrUndefined(item) {
|
|
return typeof item === 'string' || typeof item === 'undefined';
|
|
};
|