A suite to track Project Diva score statistics and ratings / D4DJ event data.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
projectdivar/server/node_modules/is-base64
sigonasr2 0785506fad Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
..
example Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
test Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
.editorconfig Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
.gitattributes Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
.jscsrc Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
CHANGELOG.md Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
LICENSE.md Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
README.md Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
is-base64.js Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
package.json Update and test twitter endpoints and connections. Prepare java spring server 4 years ago

README.md

is-base64

Predicate that returns true if base64 string.

Install

npm install is-base64

Usage

var isBase64 = require('is-base64');

var string = 'iVBORw0KGgoAAAAN ... kSuQmCC';
var stringWithMime = 'data:image/png;base64,iVBORw0KGgoAAAA ... AAElFTkSuQmCC';

console.log(isBase64(string)); // true
console.log(isBase64(stringWithMime)); // false
console.log(isBase64(stringWithMime, {mime: true})); // true
console.log(isBase64('1342234')); // false
console.log(isBase64('afQ$%rfew')); // false
console.log(isBase64('dfasdfr342')); // false
console.log(isBase64('uuLMhh==')); // true
console.log(isBase64('uuLMhh')); // false
console.log(isBase64('uuLMhh', {paddingRequired: false})); // true
console.log(isBase64('')); // true
console.log(isBase64('', {allowBlank: false})); // false

API

isBase64(string, options)

  • {string} string - string to check if is valid base64 string

  • {object} [options]

    • [options.paddingRequired=true] {boolean} - check for padding
    • [options.mime=false] {boolean} - returns true for valid strings with mime
    • [options.allowBlank=true] {boolean} - returns true for empty string

License

MIT