Comparing version 1.0.5 to 1.0.6
export {binarySearch} from './src/searching/binarySearch'; | ||
export {linearSearch} from './src/searching/linearSearch'; |
{ | ||
"name": "athro", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "A library for javascript which contains basic datastructures, algorithms and some generic functionalities which a developer needs", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
function binarySearch(arr,num){ | ||
export default binarySearch(arr,num) =>{ | ||
@@ -23,3 +23,2 @@ let low = 0; | ||
} | ||
return -1; | ||
@@ -29,3 +28,2 @@ | ||
export {binarySearch} | ||
// console.log("Element found : ", binarySearch([1,2,3,4,5], 7)) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1665