UNPKG

@mikro-orm/core

Version:

TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.

7 lines (6 loc) 203 B
/** No-op highlighter that returns SQL text unchanged. Used as the default when no syntax highlighting is configured. */ export class NullHighlighter { highlight(text) { return text; } }