Check `type` of bson field to determine if it's a $numberDecimal (mongo/node)

Decimal128 is a BSON type. If you import it:

const { Decimal128 }  = require('bson');

You can check the type in your code as following:

if (object[k] instanceof Decimal128) {