0.2.0 • Published 7 years ago

is-json-file v0.2.0

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

is-json-file

npm Version GitHub License Build Status

Determine if a resource is a JSON file.

Install

You can install this module via the following command.

$ npm install --save is-json-file

Usage

const isJsonFile = require('is-json-file');

let filename = 'taco-tuesday.json';

isJsonFile(filename); // > true

let notJson = 'laser-giraffe.txt';

isJsonFile(notJson); // > false

Testing

$ npm test

License

This project is licensed under the terms of the MIT License (Expat). You can view the full license here.