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: rbuckton/reflect-metadata
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: aacaeb1735a5a0e08c470e386eea7e340e15cc0d
Choose a base ref
...
head repository: rbuckton/reflect-metadata
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e6bbe4f255186e06ab4f7704067bcd84f603c9ee
Choose a head ref
  • 5 commits
  • 8 files changed
  • 3 contributors

Commits on May 20, 2019

  1. Fix variable name

    amatiasq authored May 20, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6df4fb2 View commit details
  2. Merge pull request #109 from amatiasq/patch-2

    Fix variable name
    rbuckton authored May 20, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3aeb98a View commit details

Commits on Dec 7, 2023

  1. Copy the full SHA
    ea8d3de View commit details
  2. Bump patch version

    rbuckton committed Dec 7, 2023
    Copy the full SHA
    d8066d1 View commit details
  3. Merge pull request #143 from rbuckton/process.env

    Bypass webpack process.env inlining
    rbuckton authored Dec 7, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e6bbe4f View commit details
Showing with 283 additions and 229 deletions.
  1. +1 −2 Reflect.js
  2. +1 −1 Reflect.js.map
  3. +1 −1 Reflect.ts
  4. +50 −14 docs/ecmarkup.css
  5. +51 −47 docs/ecmarkup.js
  6. +176 −161 docs/index.html
  7. +1 −1 package.json
  8. +2 −2 spec.html
3 changes: 1 addition & 2 deletions Reflect.js
Original file line number Diff line number Diff line change
@@ -63,7 +63,7 @@ var Reflect;
};
// Load global or shim versions of Map, Set, and WeakMap
var functionPrototype = Object.getPrototypeOf(Function);
var usePolyfill = typeof process === "object" && process.env && process.env["REFLECT_METADATA_USE_MAP_POLYFILL"] === "true";
var usePolyfill = typeof process === "object" && process["env" + ""] && process["env" + ""]["REFLECT_METADATA_USE_MAP_POLYFILL"] === "true";
var _Map = !usePolyfill && typeof Map === "function" && typeof Map.prototype.entries === "function" ? Map : CreateMapPolyfill();
var _Set = !usePolyfill && typeof Set === "function" && typeof Set.prototype.entries === "function" ? Set : CreateSetPolyfill();
var _WeakMap = !usePolyfill && typeof WeakMap === "function" ? WeakMap : CreateWeakMapPolyfill();
@@ -1129,4 +1129,3 @@ var Reflect;
}
});
})(Reflect || (Reflect = {}));
//# sourceMappingURL=Reflect.js.map
Loading