Home Reference Source Test

src/atomic/constant.js

  1. /**
  2. * Extended boolean type without data representing "True"
  3. */
  4. export const VALUE_TRUE = true
  5.  
  6. /**
  7. * Extended boolean type without data representing "False"
  8. */
  9. export const VALUE_FALSE = false
  10.  
  11. /**
  12. * Extended type without data representing "None"
  13. * @type {null}
  14. */
  15. export const VALUE_NONE = null
  16.  
  17. /**
  18. * Extended type without data representing "Infinity"
  19. */
  20. export const VALUE_INFINITY = Infinity