From 63c717b4ea34d6126ece2ddee03d8b588d41cace Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sun, 26 Apr 2020 21:49:03 +0300 Subject: [PATCH] updated docs... Signed-off-by: Alex A. Naanou --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 757ae72..bb217a7 100755 --- a/README.md +++ b/README.md @@ -25,13 +25,22 @@ Disadvantages compared to the `class` syntax: - Slightly more complicated calling of `parent` (_super_) methods -## Basic usage + +## Installation ```bash $ npm install ig-object ``` +Or just download and drop _object.js_ into your code. + + +## Basic usage + + +Include the code, this is compatible with both [node's](https://nodejs.org/) and +[RequireJS'](https://requirejs.org/) `require(..)` ```javascript var object = require('ig-object') ```