mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
203 B
TypeScript
8 lines
203 B
TypeScript
import escape = require('pg-escape');
|
|
|
|
escape('INSERT INTO %I VALUES(%L)', 'books', "O'Reilly");
|
|
escape.string("ab'cd");
|
|
escape.dollarQuotedString("ab'cd");
|
|
escape.ident('1234');
|
|
escape.literal('1234');
|