Show More
Commit Description:
add golden submit button...
Commit Description:
add golden submit button
- When the user submit more than or equal to 100 times the submit button will turn gold
- Add golden-btn tag in applications.css.scss
References:
File last commit:
Show/Diff file:
Action:
node_modules/buffer-equal/README.markdown
| 62 lines
| 855 B
| text/x-markdown
| MarkdownLexer
|
buffer-equal
Return whether two buffers are equal.
example
var bufferEqual = require('buffer-equal'); console.dir(bufferEqual( new Buffer([253,254,255]), new Buffer([253,254,255]) )); console.dir(bufferEqual( new Buffer('abc'), new Buffer('abcd') )); console.dir(bufferEqual( new Buffer('abc'), 'abc' ));
output:
true false undefined
methods
var bufferEqual = require('buffer-equal')
bufferEqual(a, b)
Return whether the two buffers a
and b
are equal.
If a
or b
is not a buffer, return undefined
.
install
With npm do:
npm install buffer-equal
license
MIT