12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- 'use strict';
- /**
- * A class representation of the BSON Code type.
- */
- class Code {
- /**
- * Create a Code type
- *
- * @param {(string|function)} code a string or function.
- * @param {Object} [scope] an optional scope for the function.
- * @return {Code}
- */
- constructor(code, scope) {
- this.code = code;
- this.scope = scope;
- }
- /**
- * @ignore
- */
- toJSON() {
- return { scope: this.scope, code: this.code };
- }
- /**
- * @ignore
- */
- toExtendedJSON() {
- if (this.scope) {
- return { $code: this.code, $scope: this.scope };
- }
- return { $code: this.code };
- }
- /**
- * @ignore
- */
- static fromExtendedJSON(doc) {
- return new Code(doc.$code, doc.$scope);
- }
- }
- Object.defineProperty(Code.prototype, '_bsontype', { value: 'Code' });
- module.exports = Code;
|