mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-27 06:22:55 +08:00
8 lines
202 B
TypeScript
8 lines
202 B
TypeScript
import * as escape from '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');
|