microplugin
Advanced tools
Comparing version 0.0.2 to 0.0.3
@@ -5,3 +5,3 @@ { | ||
"description": "A lightweight plugin / dependency system for javascript libraries.", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"license": "Apache License, Version 2.0", | ||
@@ -8,0 +8,0 @@ "readmeFilename": "README.md", |
@@ -5,3 +5,3 @@ { | ||
"description": "A lightweight plugin / dependency system for javascript libraries.", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"author": "Brian Reavis <brian@thirdroute.com>", | ||
@@ -8,0 +8,0 @@ "main": "src/microplugin.js", |
@@ -5,7 +5,7 @@ # microplugin.js | ||
*Keep code modularized & extensible.* MicroPlugin is a lightweight drop-in plugin architecture for your JavaScript library. Plugins can [declare dependencies](#dependencies) to other plugins and can be [initialized with options](#loading-plugins) (in a variety of formats). It's [CommonJS](http://commonjs.org), so it works identically in Node.js and in a browser. | ||
*Keep code modularized & extensible.* MicroPlugin is a lightweight drop-in plugin architecture for your JavaScript library. Plugins can [declare dependencies](#dependencies) to other plugins and can be [initialized with options](#loading-plugins) (in a variety of formats). It [AMD](http://en.wikipedia.org/wiki/Asynchronous_module_definition)-compatible and it works identically in Node.js and in a browser. | ||
```sh | ||
$ npm install microplugin | ||
$ bower install | ||
$ bower install microplugin | ||
``` | ||
@@ -116,2 +116,2 @@ | ||
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. | ||
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. |
@@ -129,3 +129,3 @@ /** | ||
var utils = { | ||
isArray: Array.isArray || function() { | ||
isArray: Array.isArray || function(vArg) { | ||
return Object.prototype.toString.call(vArg) === '[object Array]'; | ||
@@ -132,0 +132,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9137
116