0.0.13 • Published 2 years ago

sample-template-react-component-library v0.0.13

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Sample-template-react-component-library

New package for react components

Installation

npm install mp-sort --save
yarn add mp-sort
bower install mp-sort --save

Usage

Javascript

var sort = require("mp-sort");
var sortedList = sort.bubbleSort([3, 6, 5, 1, 4, 2, 8, 9, 7]);
Output should be '[1,2,3,4,5,6,7,8,9]'

TypeScript

import { bubbleSort } from "mp-sort";
console.log(bubbleSort(["Miguel", "Andrea", "Ana", "Julian", "Fernando", "Luis"]));
Output should be ["Ana", "Andrea", "Fernando", "Julian", "Luis", "Miguel"]

AMD

define(function (require, exports, module) {
  var sort = require("mp-sort");
});

Test

npm run test
0.0.13

2 years ago

0.0.12

2 years ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago