ioredis
Version:
A robust, performance-focused and full-featured Redis client for Node.js.
18 lines (17 loc) • 443 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.VerbatimString = void 0;
/*
* Portions adapted from node-redis:
* https://github.com/redis/node-redis
*
* Copyright (c) 2022-2023, Redis, Inc.
* Licensed under the MIT License.
*/
class VerbatimString extends String {
constructor(format, value) {
super(value);
this.format = format;
}
}
exports.VerbatimString = VerbatimString;