source: trip-planner-front/node_modules/core-js/internals/inspect-source.js@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 346 bytes
Line 
1var store = require('../internals/shared-store');
2
3var functionToString = Function.toString;
4
5// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
6if (typeof store.inspectSource != 'function') {
7 store.inspectSource = function (it) {
8 return functionToString.call(it);
9 };
10}
11
12module.exports = store.inspectSource;
Note: See TracBrowser for help on using the repository browser.