1.2.0 • Published 11 months ago

react-comma-separator v1.2.0

Weekly downloads
-
License
ISC
Repository
-
Last release
11 months ago

Example

import {splitByComma} from "react-comma-separator";
import { useEffect } from "react";

function MyComponent(){

  useEffect(() => {
    console.log("splitByComma =",splitByComma(375000));

    //  Expected output - 3,75,000
  }, []);
    return(<div>
    Example for react-comma-separator
    </div>)
}