README
VerifyJs
A lightweight simple puzzle verification plugin.
Verify randomly generates a path for the user to follow using the on screen d-pad.

Installation
Add verify.js to your project.
<script src="verify.js"></script>
You can get the corresponding CDN link from unpkg.
VerifyJs is available via npm.
npm install @andypagdin/verify --save
Usage
Simply call action() to activate the verification modal.
Verify.action((result, message) => {
console.log(result, message);
});
result will return 3 different codes:
0: Verify failed.1: Verify successful.2: Modal was closed before verification was able to complete.
message will return 3 different strings:
Incorrect move $move_directionVerification successfulModal closed before verification complete