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.

readme.md 631B

1234567891011121314151617181920212223242526272829303132333435
  1. # is-plain-obj [![Build Status](https://travis-ci.org/sindresorhus/is-plain-obj.svg?branch=master)](https://travis-ci.org/sindresorhus/is-plain-obj)
  2. > Check if a value is a plain object
  3. An object is plain if it's created by either `{}`, `new Object()` or `Object.create(null)`.
  4. ## Install
  5. ```
  6. $ npm install --save is-plain-obj
  7. ```
  8. ## Usage
  9. ```js
  10. var isPlainObj = require('is-plain-obj');
  11. isPlainObj({foo: 'bar'});
  12. //=> true
  13. isPlainObj([1, 2, 3]);
  14. //=> false
  15. ```
  16. ## Related
  17. - [is-obj](https://github.com/sindresorhus/is-obj) - Check if a value is an object
  18. ## License
  19. MIT © [Sindre Sorhus](http://sindresorhus.com)