Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
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.

35 lines
631 B

  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)