SchemaAPIProcessorsabsOn this pageabs$abs Returns the absolute value of a number. Example // Normalize a signed offset to always be non-negativenew Schema('number').transformer('$abs')// Ensure a distance value is always positivenew Schema('object', { distance: new Schema('number').transformer('$abs'),})