Skip to content

Commit

Permalink
[Docs] update all possible http: links to https:
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jan 3, 2022
1 parent 372ec2d commit 7572558
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 60 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@

0.0.4
- Revised Object.getPrototypeOf to work in more cases
in response to http://ejohn.org/blog/objectgetprototypeof/
in response to https://johnresig.com/blog/objectgetprototypeof/
[issue #2] (fschaefer)

0.0.3
Expand Down
10 changes: 5 additions & 5 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
},
"homepage": "https://github.com/es-shims/es5-shim",
"authors": [
"Kris Kowal <[email protected]> (http://github.com/kriskowal/)",
"Sami Samhuri <[email protected]> (http://samhuri.net/)",
"Florian Schäfer <[email protected]> (http://github.com/fschaefer)",
"Irakli Gozalishvili <[email protected]> (http://jeditoolkit.com)",
"Kit Cambridge <[email protected]> (http://kitcambridge.github.com)",
"Kris Kowal <[email protected]> (https://github.com/kriskowal/)",
"Sami Samhuri <[email protected]> (https://samhuri.net/)",
"Florian Schäfer <[email protected]> (https://github.com/fschaefer)",
"Irakli Gozalishvili <[email protected]> (https://gozala.io)",
"Kit Cambridge <[email protected]> (https://github.com/kitcambridge)",
"Jordan Harband <[email protected]> (https://github.com/ljharb/)"
],
"description": "ECMAScript 5 compatibility shims for legacy JavaScript engines",
Expand Down
30 changes: 15 additions & 15 deletions es5-sham.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@
};

// ES5 15.2.3.2
// http://es5.github.com/#x15.2.3.2
// https://es5.github.io/#x15.2.3.2
if (!Object.getPrototypeOf) {
// https://github.com/es-shims/es5-shim/issues#issue/2
// http://ejohn.org/blog/objectgetprototypeof/
// https://johnresig.com/blog/objectgetprototypeof/
// recommended by fschaefer on github
//
// sure, and webreflection says ^_^
Expand All @@ -84,7 +84,7 @@
}

// ES5 15.2.3.3
// http://es5.github.com/#x15.2.3.3
// https://es5.github.io/#x15.2.3.3

// check whether getOwnPropertyDescriptor works if it's given. Otherwise, shim partially.
if (Object.defineProperty) {
Expand Down Expand Up @@ -185,15 +185,15 @@
}

// ES5 15.2.3.4
// http://es5.github.com/#x15.2.3.4
// https://es5.github.io/#x15.2.3.4
if (!Object.getOwnPropertyNames) {
Object.getOwnPropertyNames = function getOwnPropertyNames(object) {
return Object.keys(object);
};
}

// ES5 15.2.3.5
// http://es5.github.com/#x15.2.3.5
// https://es5.github.io/#x15.2.3.5
if (!Object.create) {

// Contributed by Brandon Benvie, October, 2012
Expand Down Expand Up @@ -328,14 +328,14 @@
}

// ES5 15.2.3.6
// http://es5.github.com/#x15.2.3.6
// https://es5.github.io/#x15.2.3.6

// Patch for WebKit and IE8 standard mode
// Designed by hax <hax.github.com>
// related issue: https://github.com/es-shims/es5-shim/issues#issue/5
// IE8 Reference:
// http://msdn.microsoft.com/en-us/library/dd282900.aspx
// http://msdn.microsoft.com/en-us/library/dd229916.aspx
// https://msdn.microsoft.com/en-us/library/dd282900.aspx
// https://msdn.microsoft.com/en-us/library/dd229916.aspx
// WebKit Bugs:
// https://bugs.webkit.org/show_bug.cgi?id=36423

Expand Down Expand Up @@ -435,7 +435,7 @@
}

// ES5 15.2.3.7
// http://es5.github.com/#x15.2.3.7
// https://es5.github.io/#x15.2.3.7
if (!Object.defineProperties || definePropertiesFallback) {
Object.defineProperties = function defineProperties(object, properties) {
// make a valiant attempt to use the real defineProperties
Expand All @@ -457,7 +457,7 @@
}

// ES5 15.2.3.8
// http://es5.github.com/#x15.2.3.8
// https://es5.github.io/#x15.2.3.8
if (!Object.seal) {
Object.seal = function seal(object) {
if (Object(object) !== object) {
Expand All @@ -471,7 +471,7 @@
}

// ES5 15.2.3.9
// http://es5.github.com/#x15.2.3.9
// https://es5.github.io/#x15.2.3.9
if (!Object.freeze) {
Object.freeze = function freeze(object) {
if (Object(object) !== object) {
Expand Down Expand Up @@ -500,7 +500,7 @@
}

// ES5 15.2.3.10
// http://es5.github.com/#x15.2.3.10
// https://es5.github.io/#x15.2.3.10
if (!Object.preventExtensions) {
Object.preventExtensions = function preventExtensions(object) {
if (Object(object) !== object) {
Expand All @@ -514,7 +514,7 @@
}

// ES5 15.2.3.11
// http://es5.github.com/#x15.2.3.11
// https://es5.github.io/#x15.2.3.11
if (!Object.isSealed) {
Object.isSealed = function isSealed(object) {
if (Object(object) !== object) {
Expand All @@ -525,7 +525,7 @@
}

// ES5 15.2.3.12
// http://es5.github.com/#x15.2.3.12
// https://es5.github.io/#x15.2.3.12
if (!Object.isFrozen) {
Object.isFrozen = function isFrozen(object) {
if (Object(object) !== object) {
Expand All @@ -536,7 +536,7 @@
}

// ES5 15.2.3.13
// http://es5.github.com/#x15.2.3.13
// https://es5.github.io/#x15.2.3.13
if (!Object.isExtensible) {
Object.isExtensible = function isExtensible(object) {
// 1. If Type(O) is not Object throw a TypeError exception.
Expand Down
Loading

0 comments on commit 7572558

Please sign in to comment.