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

Commit 381b4f7

Browse files
committed
build 0.6.1
2 parents 6179a83 + ee0697e commit 381b4f7

23 files changed

+13318
-33
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ global | `FormData()`<sup>[12](#FormData)</sup>, `Set()`, `Map()`, `WeakSet()`,
9292
`document` | `.head`, `.createEvent()`<sup>[11](#document.createEvent)</sup>
9393
`FormData.prototype` | `.append()`
9494
`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`
95-
`XMLHttpRequest.prototype` | `.send()`<sup>[15](#XMLHttpRequest)</sup>, `.onload()`, `.onerror()`, `.onabort()`, `.addEventListener()`, `.removeEventListener()`, `.dispatchEvent()`
95+
`XMLHttpRequest.prototype` | `.send()`<sup>[15](#XMLHttpRequest)</sup>, `.onload()`, `.onerror()`, `.onabort()`
9696
`Date` generics | `.now()`
9797
`Promise` generics | `.resolve()`, `.reject()`, `.all()`, `.race()`
9898
`Promise.prototype` | `.then`, `.catch`<sup>[17](#catch-delete)</sup>
@@ -555,7 +555,8 @@ lib.request({
555555
async: boolean,
556556
caching: boolean,
557557
mimeType: string,
558-
headers: Object
558+
headers: Object,
559+
advanced: Function
559560
}) //→ promise
560561
```
561562
`data` can be a string, object (automatically converted into a query string), or an instance of `FormData`

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jsCore",
33
"main": "jscore.js",
4-
"version": "0.6.0",
4+
"version": "0.6.1",
55
"description": "Complex JavaScript polyfill and set of methods",
66
"keywords": [
77
"browser",

changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
#jsCore changelog
22

3+
##v0.6.1
4+
5+
- fix: `.find()` and `.findIndex()` no longer ignore array element holes
6+
- fix: `Object.assign()` ignores null and undefined source arguments
7+
- new: `.request({advanced: function (xhr) {…}})`
8+
- del: `.addEventListener()`, `.removeEventListener()` and `.dispatchEvent()` from polyfill for XMLHttpRequest (IE8)
9+
310
##v0.6.0
411

512
- new: `Array.prototype.contains()` polyfill

0 commit comments

Comments
 (0)