algory
1.0.0
由JavaScript
、 TypeScript
和Node.js
的演算法和資料結構組成的自動柯里化通用函式庫
使用import
關鍵字導入 TypeScript 中的所有函數:
import * as λ from 'algory'λ.sumOfCubes(2, 3) λ.sumOfCubes(2)(3)
使用import
關鍵字在 TypeScript 中匯入特定函數:
import { mergeSort, avgLst } from 'algory'const arr = mergeSort([4, -32, 12, 0, 1, 44, 3]) 常數 arr2 = avgLst([4, -32, 12, 0, 1, 44, 3])
使用require
關鍵字匯入 TypeScript 中的所有函數:
const λ = require('演算法') λ.sumOfCubes(2, 3)) λ.sumOfCubes(2)(3)
使用require
關鍵字導入 JavaScript 中的所有函數:
const λ = require('演算法') λ.sumOfCubes(2, 3))
該專案是用 TypeScript 編寫的
程式碼覆蓋率:100%
該項目根據 MIT 許可條款獲得許可。
阿努拉格·穆蒂亞姆 <[email protected]>