UNPKG

@f/almost-equal

Version:

Check if two numbers are almost equal

29 lines (21 loc) 411 B
# # Vars # BIN = ./node_modules/.bin # # Tasks # node_modules: package.json @npm install test: node_modules @${BIN}/tape test/* validate: node_modules @standard init: @git init @git add . @git commit -am "initial commit" @hub create micro-js/almost-equal -d "Check if two numbers are almost equal" @travis enable @git push -u origin master .PHONY: test validate init