Returns the primitive value of a specified object
Last updated 2 years ago
Less.prototype.valueOf()
Returns the of a specified object.
The return value is the of generic type variable .
Value
public valueOf(): Value { return super.valueOf() as any; }
// Example usage. import { Less } from '@angular-package/range'; // Define constant `id`. const id = 390; // Returns 390 of type 390. new Less(id).valueOf();