Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sindresorhus/globals
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 890bcfe6e052739ce2d4dea038589f9243cf9b17
Choose a base ref
...
head repository: sindresorhus/globals
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 18de21523df775fd8374da0926d173fa3e2d095c
Choose a head ref
  • 6 commits
  • 3 files changed
  • 3 contributors

Commits on Oct 29, 2017

  1. Add PerformanceObserver (#120)

    jonkeller authored and sindresorhus committed Oct 29, 2017
    Copy the full SHA
    308f142 View commit details
  2. 10.2.0

    sindresorhus committed Oct 29, 2017

    Verified

    This commit was signed with the committer’s verified signature.
    targos Michaël Zasso
    Copy the full SHA
    8cb3de2 View commit details

Commits on Nov 3, 2017

  1. Copy the full SHA
    50a3bb9 View commit details
  2. 10.3.0

    sindresorhus committed Nov 3, 2017
    Copy the full SHA
    1de990c View commit details

Commits on Nov 17, 2017

  1. Add GM to greasemonkey

    Fixes #122
    Closes #123
    sindresorhus committed Nov 17, 2017
    Copy the full SHA
    c55efa4 View commit details
  2. 10.4.0

    sindresorhus committed Nov 17, 2017
    Copy the full SHA
    18de215 View commit details
Showing with 68 additions and 2 deletions.
  1. +66 −0 globals.json
  2. +1 −1 package-lock.json
  3. +1 −1 package.json
66 changes: 66 additions & 0 deletions globals.json
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@
"builtin": {
"Array": false,
"ArrayBuffer": false,
"Atomics": false,
"Boolean": false,
"constructor": false,
"DataView": false,
@@ -41,6 +42,7 @@
"Reflect": false,
"RegExp": false,
"Set": false,
"SharedArrayBuffer": false,
"String": false,
"Symbol": false,
"SyntaxError": false,
@@ -159,6 +161,68 @@
"WeakMap": false,
"WeakSet": false
},
"es8": {
"Array": false,
"ArrayBuffer": false,
"Atomics": false,
"Boolean": false,
"constructor": false,
"DataView": false,
"Date": false,
"decodeURI": false,
"decodeURIComponent": false,
"encodeURI": false,
"encodeURIComponent": false,
"Error": false,
"escape": false,
"eval": false,
"EvalError": false,
"Float32Array": false,
"Float64Array": false,
"Function": false,
"hasOwnProperty": false,
"Infinity": false,
"Int16Array": false,
"Int32Array": false,
"Int8Array": false,
"isFinite": false,
"isNaN": false,
"isPrototypeOf": false,
"JSON": false,
"Map": false,
"Math": false,
"NaN": false,
"Number": false,
"Object": false,
"parseFloat": false,
"parseInt": false,
"Promise": false,
"propertyIsEnumerable": false,
"Proxy": false,
"RangeError": false,
"ReferenceError": false,
"Reflect": false,
"RegExp": false,
"Set": false,
"SharedArrayBuffer": false,
"String": false,
"Symbol": false,
"SyntaxError": false,
"System": false,
"toLocaleString": false,
"toString": false,
"TypeError": false,
"Uint16Array": false,
"Uint32Array": false,
"Uint8Array": false,
"Uint8ClampedArray": false,
"undefined": false,
"unescape": false,
"URIError": false,
"valueOf": false,
"WeakMap": false,
"WeakSet": false
},
"browser": {
"addEventListener": false,
"alert": false,
@@ -492,6 +556,7 @@
"PerformanceMeasure": false,
"PerformanceNavigation": false,
"PerformanceResourceTiming": false,
"PerformanceObserver": false,
"PerformanceTiming": false,
"PeriodicWave": false,
"Permissions": false,
@@ -1275,6 +1340,7 @@
"opr": false
},
"greasemonkey": {
"GM": false,
"GM_addStyle": false,
"GM_deleteValue": false,
"GM_getResourceText": false,
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "globals",
"version": "10.1.0",
"version": "10.4.0",
"description": "Global identifiers from different JavaScript environments",
"license": "MIT",
"repository": "sindresorhus/globals",