Skip to content

Instantly share code, notes, and snippets.

@abdulloooh
Created April 7, 2022 12:20
Show Gist options
  • Save abdulloooh/8a52a4bd0791a7f54d1c391d53337d63 to your computer and use it in GitHub Desktop.
Save abdulloooh/8a52a4bd0791a7f54d1c391d53337d63 to your computer and use it in GitHub Desktop.
Convert JS array to psql array
const toPsqlArray = (arr) => {
let value = 'array[]::text[]';
if (arr && arr.length > 0) {
value = 'ARRAY [';
arr.map((each) => {
value = `${value} '${each}',`;
});
value = `${value.slice(0, -1)} ]`;
}
return value;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment