Skip to content
This repository has been archived by the owner on Aug 21, 2022. It is now read-only.

Commit

Permalink
build 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Octane committed Oct 16, 2014
2 parents 6179a83 + ee0697e commit 381b4f7
Show file tree
Hide file tree
Showing 23 changed files with 13,318 additions and 33 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ global | `FormData()`<sup>[12](#FormData)</sup>, `Set()`, `Map()`, `WeakSet()`,
`document` | `.head`, `.createEvent()`<sup>[11](#document.createEvent)</sup>
`FormData.prototype` | `.append()`
`Event.prototype`<sup>[13](#Event.prototype)</sup> | `.initEvent()`<sup>[14](#Event.prototype.initEvent)</sup>, `.initUIEvent()`<sup>[14](#Event.prototype.initEvent)</sup>, `.initMouseEvent()`<sup>[14](#Event.prototype.initEvent)</sup>, `.initCustomEvent()`, `.pageX`, `.pageY`, `.timeStamp`, `.target`, `.relatedTarget`
`XMLHttpRequest.prototype` | `.send()`<sup>[15](#XMLHttpRequest)</sup>, `.onload()`, `.onerror()`, `.onabort()`, `.addEventListener()`, `.removeEventListener()`, `.dispatchEvent()`
`XMLHttpRequest.prototype` | `.send()`<sup>[15](#XMLHttpRequest)</sup>, `.onload()`, `.onerror()`, `.onabort()`
`Date` generics | `.now()`
`Promise` generics | `.resolve()`, `.reject()`, `.all()`, `.race()`
`Promise.prototype` | `.then`, `.catch`<sup>[17](#catch-delete)</sup>
Expand Down Expand Up @@ -555,7 +555,8 @@ lib.request({
async: boolean,
caching: boolean,
mimeType: string,
headers: Object
headers: Object,
advanced: Function
}) //→ promise
```
`data` can be a string, object (automatically converted into a query string), or an instance of `FormData`
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jsCore",
"main": "jscore.js",
"version": "0.6.0",
"version": "0.6.1",
"description": "Complex JavaScript polyfill and set of methods",
"keywords": [
"browser",
Expand Down
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
#jsCore changelog

##v0.6.1

- fix: `.find()` and `.findIndex()` no longer ignore array element holes
- fix: `Object.assign()` ignores null and undefined source arguments
- new: `.request({advanced: function (xhr) {…}})`
- del: `.addEventListener()`, `.removeEventListener()` and `.dispatchEvent()` from polyfill for XMLHttpRequest (IE8)

##v0.6.0

- new: `Array.prototype.contains()` polyfill
Expand Down
Loading

0 comments on commit 381b4f7

Please sign in to comment.