1.0.0 • Published 7 years ago

nativescript-randombytes v1.0.0

Weekly downloads
47
License
MIT
Repository
github
Last release
7 years ago

NativeScript randombytes shim

The randombytes package doesn't work in the {N} runtime, so replace it by this package if you need to.

Installation

tns plugin add nativescript-randombytes

Usage

var randomBytes = require('nativescript-randombytes');

// sync usage
console.log("randomBytes: " + randomBytes(16));

// async usage
randomBytes(16, function (ignore, result) {
  console.log("randomBytes async: " + result);
})