Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

shim.js 372B

12345678910111213141516
  1. 'use strict';
  2. const getPolyfill = require('./polyfill');
  3. module.exports = () => {
  4. const polyfill = getPolyfill();
  5. if (polyfill !== process.allowedNodeEnvironmentFlags) {
  6. Object.defineProperty(process, 'allowedNodeEnvironmentFlags', {
  7. writable: true,
  8. enumerable: true,
  9. configurable: true,
  10. value: polyfill
  11. });
  12. }
  13. return polyfill;
  14. };