v0.6.2
Bug fixes
- Fixes an issue where
XMLHttpRequest
class didn't have the ready state static properties (UNSENT
,OPENED
, etc.) once request interception was in place (#81). Now those ready state properties are available as static properties per specification:
XMLHttpRequest.UNSENT // 0
XMLHttpRequest.OPENED // 1
XMLHttpRequest.HEADERS_RECEIVED // 2
XMLHttpRequest.LOADING // 3
XMLHttpRequest.DONE // 4