Git Product home page Git Product logo

simple-random-char's Introduction

Simple Random Char

Membuat karakter acak dengan dengan mudah dan simple. Dilengkapi dengan "Alphanumeric" && "Alphabet" && "Numbers" && "Costum"

Package ini menggunakan library Voucherify.

Apa saja fiturnya?

  • Get random karakter (Alphanumeric)
  • Get random karakter (Alphabet)
  • Get random karakter (Numbers)
  • Get random karakter (Costum)

Installation

Install with npm:

$ npm install simple-random-char

With require:

const random = require("simple-random-char");

Usage

Note :

/*
#> count == 1 => result = String
#> count > 1 => result = Array

#> alphanum = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
#> alphabet = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
#> numbers = "0123456789"
#> custom = "YOUR_CUSTOM_CHAR"
*/

Example :

const alphanum = random.alphanum() // result : MGD9ypmFoXwhw7tws50n
const alphabet = random.alphabet() // result : thYSTuTTScEKQYfiwfpN
const numbers = random.numbers() // result : 26847188549482119024

Advance

const log = console.log;
const config = {
    prefix: "awalan-", // default : ""
    postfix: "-akhiran", // default : ""
    length: 10, // default : 20
    count: 1 // default : 1
}

log(random.alphanum(config)) // result : awalan-qgx2vNjzpu-akhiran
log(random.alphabet(config)) // result : awalan-DIlzxHVBlx-akhiran
log(random.numbers(config)) // result : awalan-2615231700-akhiran

Costum

const log = console.log;
const custom = {
    prefix: "awalan-", // default : ""
    postfix: "-akhiran", // default : ""
    length: 10, // default : 20
    count: 1, // default : 1,
    custom: "YOUR_CUSTOM_CHAR" // required! (bisa di isi apa aja)
}

log(random.custom(custom)) // result : awalan-CR_AYRHUUS-akhiran

Sample

result for count > 1 (lebih dari satu)

[
  "awalan-fbT82pSXJt-akhiran",
  "awalan-YoR33rMTWb-akhiran",
  "awalan-99iW2fGrWV-akhiran"
] // alphanum

[
  "awalan-EwwIRhgMJa-akhiran",
  "awalan-gyHaYdMXmg-akhiran",
  "awalan-chFbICCvaf-akhiran"
] // alphabet

[
  "awalan-3781640300-akhiran",
  "awalan-3730818925-akhiran",
  "awalan-0984199624-akhiran"
] // numbers

[
  "awalan-SCUTSRHTSO-akhiran",
  "awalan-OTSCSOCOAH-akhiran",
  "awalan-RRRRUMSOOA-akhiran"
] // custom

Testing

Install dependencies:

npm install

Run tests:

npm run test

License

Code released under the Apache.

simple-random-char's People

Contributors

zaadevofc avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.