web 3d图形渲染器
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.

12 lines
338 B

  1. var store = require('../internals/shared-store');
  2. var functionToString = Function.toString;
  3. // this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper
  4. if (typeof store.inspectSource != 'function') {
  5. store.inspectSource = function (it) {
  6. return functionToString.call(it);
  7. };
  8. }
  9. module.exports = store.inspectSource;