Package Exports
- cmfcucai
- cmfcucai/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (cmfcucai) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Giới Thiệu
Tổng hợp từ những hàm củ cải của anh em
Cài đặt
$ npm install cmfcucai@latest
Import vào sử dụng
Sau khi cài đặt thì import vào như phía dưới
import {
CommonFunc,
CommonDate,
CommonFile
} from 'cmfcucai';
Gồm có 3 module chính.
CommonFunc
Module những hàm hay dùng.
deleteCookie,
delAllCookie,
getcookie,
setCookie
setSelectionRange (input , selectionStart: number, selectionEnd: number)
=> select range of input from "selectionStart" to selectionEnd
checkDouble (valueCheck: string)
=> check vallueString is Double
formatDecimal,
compare2Object,
getByteLength(value: string) : number
=> return byte lengh of value
UUIDV4
=> generate uuid with pattern "'xxxVxxxxx-xxOxx-Lxxx-Axxx-xxxVxxxxxxxxLx'"
smallUUID
=> generate uuid with pattern "'xxxvxxxlxx'"
emailValidate(email: string) : boolean
=> check email vailid or not
createUrlQuery(data: Object)
=> convert Object to Param URL EXP {a : 1, b : 2} = > ?a=1&b=2
replaceAll(value: string, search: string, replaceWith: string)
=> replace all search String to "replaceWith"
CommonDate
Module những hàm hay dùng cho Date.
getDateString,
isLeapYear(dateOrString : Date)
=> check is leap year
if dateOrString is null date return is current date
getDaysInMonth(dateOrString : any)
=> return all day in dateOrString
if dateOrString is null date return is current date
countDayNotSunday(dateStart:Date, dateEnd:Date)
=> return count day from "dateStart" to "dateEnd" with not sunday count
addMonths(dateOrString : any,monthAdd : number,toString = false)
=> add month from param "monthAdd"
if dateOrString is null date return is current date
if toString = true will return Date else return string with pattern "YYYY/MM/DD"
formatValueChange,
roundDate(_date : any, end = false)
=> round date to start of date
if _date is null date return is current date
if end == true will return round end of date
getDayBetween2Date,
isDateWithFormat(value: string, pattern = "YYYY/MM/DD"): boolean
=> check value is date with pattern default is "YYYY/MM/DD"
pattern {
"YYYY/MM/DD",
"YYYY.MM.DD",
"DD/MM/YYYY",
"MM/DD/YYYY",
"YYYYMMDD",
"DDMMYYYY",
"MMDDYYYY",
"YYYY-MM-DD",
"DD-MM-YYYY",
"MM-DD-YYYY",
"YYYY-MM-DD HH:MM:SS",
"YYYY/MM/DD HH:MM:SS",
"YYYYMMDDHHMMSS"
}
getUTCDate
=> return {year,month,day,hour,minute,second} with UTC Time Zone
CommonFile
Module những hàm hay dùng cho File.
arrayDataToTxt, -> xuất file text
base64ToBlob,
dataToCSV -> xuất file CSV
svgToFile, -> SVGElement to file png
svgToPng, -> SVGElement to file svg
arrayDataToTxt => export array data to file txt
parameter : (_arrayData, fileName = "text.txt")
_arrayData exp : ["row1","row2",...]
fileName default is "text.txt"
base64ToBlob => convert base64 string to blob
dataToCSV => export object data to file csv
parameter : (dataListObj,options,fileName = 'myCSV.csv')
options exp : [{headerName : '' , columnName : ''}]
fileName default is "myCSV.csv"
svgToPng => export SVGElement to file png
(svg: SVGElement, fileName = "unamed.png", callBack = () => { })
svg = document.querySelector("svg") or @ViewChild("", { static true }) svg!: HTMLElement
fileName default is "unamed.png"
svgToFile => export SVGElement to file svg
(svg: any, fileName = "unamed.svg", callBack = () => { })
svg = document.querySelector("svg") or @ViewChild("", { static true }) svg!: HTMLElement
fileName default is "unamed.svg"
update late