code.ts
1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import type { Document } from './bson';
/** @public */
export interface CodeExtended {
$code: string | Function;
$scope?: Document;
}
/**
* A class representation of the BSON Code type.
* @public
* @category BSONType
*/
export class Code {
_bsontype!: 'Code';
code!: string | Function;
scope?: Document;
/**
* @param code - a string or function.
* @param scope - an optional scope for the function.
*/
constructor(code: string | Function, scope?: Document) {
if (!(this instanceof Code)) return new Code(code, scope);
this.code = code;
this.scope = scope;
}
toJSON(): { code: string | Function; scope?: Document } {
return { code: this.code, scope: this.scope };
}
/** @internal */
toExtendedJSON(): CodeExtended {
if (this.scope) {
return { $code: this.code, $scope: this.scope };
}
return { $code: this.code };
}
/** @internal */
static fromExtendedJSON(doc: CodeExtended): Code {
return new Code(doc.$code, doc.$scope);
}
/** @internal */
[Symbol.for('nodejs.util.inspect.custom')](): string {
return this.inspect();
}
inspect(): string {
const codeJson = this.toJSON();
return `new Code("${codeJson.code}"${
codeJson.scope ? `, ${JSON.stringify(codeJson.scope)}` : ''
})`;
}
}
Object.defineProperty(Code.prototype, '_bsontype', { value: 'Code' });