Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

indexed-object.js 511B

12345678910111213
  1. var fails = require('../internals/fails');
  2. var classof = require('../internals/classof-raw');
  3. var split = ''.split;
  4. // fallback for non-array-like ES3 and non-enumerable old V8 strings
  5. module.exports = fails(function () {
  6. // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
  7. // eslint-disable-next-line no-prototype-builtins -- safe
  8. return !Object('z').propertyIsEnumerable(0);
  9. }) ? function (it) {
  10. return classof(it) == 'String' ? split.call(it, '') : Object(it);
  11. } : Object;