MCPcopy Create free account
hub / github.com/pgadmin-org/pgadmin4 / isEmptyString

Function isEmptyString

web/pgadmin/static/js/validators.js:57–59  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

55}
56
57export function isEmptyString(value) {
58 return _.isUndefined(value) || _.isNull(value) || String(value).trim() === '' || String(value).replace(/(^\s+)|(\s+$)/g, '') == '';
59}
60
61/* Validate rows to check for any duplicate rows based on uniqueCols-columns array */
62export function checkUniqueCol(rows, uniqueCols) {

Callers 15

validateMethod · 0.90
validateMethod · 0.90
baseFieldsMethod · 0.90
validateMethod · 0.90
validateMethod · 0.90
validateMethod · 0.90
validateMethod · 0.90
validateMethod · 0.90
validateMethod · 0.90
validateMethod · 0.90
validateMethod · 0.90
validateMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected