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.
 
 
 

17 rivejä
412 B

  1. const collections = require('./collections');
  2. const conditional = require('./conditional');
  3. const core = require('./core');
  4. const crypto = require('./crypto');
  5. const date = require('./date');
  6. const number = require('./number');
  7. const string = require('./string');
  8. module.exports = {
  9. ...collections,
  10. ...conditional,
  11. ...core,
  12. ...crypto,
  13. ...date,
  14. ...number,
  15. ...string
  16. };