From 97ef6c7ee6d2c99b36ed5da3b6821a714a1701e0 Mon Sep 17 00:00:00 2001 From: Gaurav Juvekar <gauravjuvekar@gmail.com> Date: Sat, 7 Jan 2017 12:24:27 +0530 Subject: [PATCH] Add extended description --- debian/control | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/debian/control b/debian/control index b36036e..96afc5c 100644 --- a/debian/control +++ b/debian/control @@ -18,5 +18,13 @@ Depends: ${misc:Depends} , nodejs Description: Check if a value is an object + Usage: + const isObj = require('is-obj'); + isObj({foo: 'bar'}); + //=> true + isObj([1, 2, 3]); + //=> true + isObj('foo'); + //=> false . Node.js is an event-based server-side JavaScript engine. -- GitLab