shahoob/functionKit

View on GitHub
src/divide.ts

Summary

Maintainability
A
0 mins
Test Coverage
export function divide(a: number, b: number): number {
  return a / b;
}