Package Exports
- is-array-buffer-x
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-array-buffer-x) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
is-array-buffer-x
Detect whether or not an object is an ArrayBuffer.
Version: 1.6.0
Author: Xotic750 Xotic750@gmail.com
License: MIT
Copyright: Xotic750
module.exports(object) ⇒ boolean ⏏
Determine if an object is an ArrayBuffer.
Kind: Exported function
Returns: boolean - true if the object is an ArrayBuffer,
else false`.
| Param | Type | Description |
|---|---|---|
| object | * |
The object to test. |
Example
var isArrayBuffer = require('is-array-buffer-x');
isArrayBuffer(new ArrayBuffer(4)); // true
isArrayBuffer(null); // false
isArrayBuffer([]); // false