1.1.2 • Published 8 years ago

is-ssim v1.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

is-ssim

Checks if a file is SSIM (Standard Schedules Information Manual) file.

Build Status Coverage Status js-standard-style npm node bitHound Overall Score

Install

$ npm install --save is-ssim

Usage

const fs = require('fs')
const isSSIM = require('is-ssim')

fs.readFile('data.ssim', 'utf8', (err, data) => {
  if (err) {
    console.error(err)
  } else {
    isSSIM(data)
    //=> true (if valid)
    // or
    // throws 'Not a SSIM file.' error (if not valid)
  }
})
1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago