From 49e639cf82e8d58dccb3458cbd08768afee8b41c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20J=C3=B8rgensen?= Date: Tue, 22 May 2018 12:34:03 +0200 Subject: [PATCH] Remove Bower installation instructions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ed6af3b..645754d 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,6 @@ As of September 2015 this includes Chrome>=20, Firefox>=13, IE>=10, Opera>=12.10 ## Installation ### NPM npm install js-untar -### Bower - bower install js-untar ## Documentation Supports AMD, CommonJS or simply load with a script tag, which will provide a global untar function. @@ -30,6 +28,8 @@ The extraction is done in a [Web Worker](https://developer.mozilla.org/en-US/doc ### Example: + import untar from "js-untar"; + // Load the source ArrayBuffer from a XMLHttpRequest (or any other way you may need). var sourceBuffer = [...];