Socket
Book a DemoInstallSign in
Socket

isndarray

Package Overview
Dependencies
Maintainers
7
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

isndarray

Returns boolean whether the argument is a ndarray

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
257
-58.14%
Maintainers
7
Weekly downloads
 
Created
Source

isndarray

Returns boolean whether the argument is a ndarray.

example

var isnd = require('isndarray')
var ndarray = require('ndarray')

true === isnd(ndarray(new Int8Array(32 * 32), [32, 32]))
true === isnd(ndarray(new Float64Array(32)))
true === isnd(ndarray(new Uint32Array(4 * 4 * 4), [4, 4, 4]))

false === isnd(new Int8Array(32 * 32), [32, 32])
false === isnd(new View3dtrick16())
false === isnd(new View3dint8())

function View3dtrick16() {
  this.dtype = 'fake'
}
function View3dint8() {
  /* no .dtype */
}

API

isndarray(arr) will return boolean whether an ndarray.

install

With npm do:

npm install isndarray

Use browserify to require('isndarray').

release history

  • 0.1.0 - initial release

license

Copyright (c) 2013 Kyle Robinson Young
Licensed under the MIT license.

Keywords

ndarray

FAQs

Package last updated on 22 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts