deno.land / x / mongoose@6.7.5 / lib / helpers / getConstructorName.js

getConstructorName.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict';
/** * If `val` is an object, returns constructor name, if possible. Otherwise returns undefined. * @api private */
module.exports = function getConstructorName(val) { if (val == null) { return void 0; } if (typeof val.constructor !== 'function') { return void 0; } return val.constructor.name;};
mongoose

Version Info

Tagged at
a year ago