Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

type.js 214B

12345678910111213
  1. 'use strict';
  2. /*!
  3. * ignore
  4. */
  5. module.exports = function(val) {
  6. if (typeof val !== 'number' && typeof val !== 'string') {
  7. throw new Error('$type parameter must be number or string');
  8. }
  9. return val;
  10. };