hypernova v2.0.0 Release Notes

Release Date: 2016-09-15 // over 7 years ago
  • 💥 Breaking Changes

    • toScript function signature changed. It now expects an object of data attributes to value.
      // before
      toScript('foo', 'bar', { hello: 'world' })
    
      // now
      toScript({ foo: 'bar' }, { hello: 'world' })
    
    • fromScript function signature changed.
      // before
      fromScript('foo', 'bar')
    
      // now
      fromScript({ foo: 'bar' })