{
	"name": "is-utf8",
	"versions": {
		"0.1.0": {
			"name": "is-utf8",
			"version": "0.1.0",
			"description": "detect if a buffer is utf8 encoded.",
			"main": "is-utf8.js",
			"scripts": {
				"test": "echo \"Error: no test specified\" && exit 1"
			},
			"repository": {
				"type": "git",
				"url": "https://github.com/wayfind/is-utf8.git"
			},
			"keywords": [
				"utf8",
				"charset"
			],
			"author": {
				"name": "wayfind"
			},
			"license": "BSD",
			"_id": "is-utf8@0.1.0",
			"dist": {
				"shasum": "813d72a6f0219952b3814f38cd277876802d9ebb",
				"tarball": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.1.0.tgz"
			},
			"_npmVersion": "1.1.59",
			"_npmUser": {
				"name": "wayfind",
				"email": "whyer1@gmail.com"
			},
			"maintainers": [
				{
					"name": "wayfind",
					"email": "whyer1@gmail.com"
				}
			],
			"directories": {},
			"contributors": []
		},
		"0.2.0": {
			"name": "is-utf8",
			"version": "0.2.0",
			"description": "detect if a buffer is utf8 encoded.",
			"main": "is-utf8.js",
			"scripts": {
				"test": "node test.js"
			},
			"repository": {
				"type": "git",
				"url": "https://github.com/wayfind/is-utf8.git"
			},
			"keywords": [
				"utf8",
				"charset"
			],
			"author": {
				"name": "wayfind"
			},
			"license": "BSD",
			"_id": "is-utf8@0.2.0",
			"dist": {
				"shasum": "b8aa54125ae626bfe4e3beb965f16a89c58a1137",
				"tarball": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.0.tgz"
			},
			"_npmVersion": "1.1.59",
			"_npmUser": {
				"name": "wayfind",
				"email": "whyer1@gmail.com"
			},
			"maintainers": [
				{
					"name": "wayfind",
					"email": "whyer1@gmail.com"
				}
			],
			"directories": {},
			"contributors": []
		},
		"0.2.1": {
			"name": "is-utf8",
			"version": "0.2.1",
			"description": "Detect if a buffer is utf8 encoded.",
			"main": "is-utf8.js",
			"scripts": {
				"test": "node test.js"
			},
			"repository": {
				"type": "git",
				"url": "git+https://github.com/wayfind/is-utf8.git"
			},
			"keywords": [
				"utf8",
				"charset"
			],
			"files": [
				"is-utf8.js"
			],
			"author": {
				"name": "wayfind"
			},
			"license": "MIT",
			"gitHead": "709df7202f9c3f93cdc2463b352dd80d8de9ce0b",
			"bugs": {
				"url": "https://github.com/wayfind/is-utf8/issues"
			},
			"homepage": "https://github.com/wayfind/is-utf8#readme",
			"_id": "is-utf8@0.2.1",
			"_shasum": "4b0da1442104d1b336340e80797e865cf39f7d72",
			"_from": ".",
			"_npmVersion": "2.12.1",
			"_nodeVersion": "2.3.4",
			"_npmUser": {
				"name": "wayfind",
				"email": "whyer1@gmail.com"
			},
			"maintainers": [
				{
					"name": "wayfind",
					"email": "whyer1@gmail.com"
				}
			],
			"dist": {
				"shasum": "4b0da1442104d1b336340e80797e865cf39f7d72",
				"tarball": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz"
			},
			"directories": {},
			"contributors": []
		}
	},
	"time": {
		"modified": "2015-12-19T04:04:22.462Z",
		"created": "2012-09-12T09:23:46.194Z",
		"0.1.0": "2012-09-12T09:23:51.635Z",
		"0.2.0": "2012-09-12T09:47:48.160Z",
		"0.2.1": "2015-12-19T04:04:22.462Z"
	},
	"users": {},
	"dist-tags": {
		"latest": "0.2.1"
	},
	"_uplinks": {
		"npmjs": {
			"etag": "W/\"eb520d29511e08df73989700a1bbf0a1\"",
			"fetched": 1597847606542
		}
	},
	"_distfiles": {
		"is-utf8-0.1.0.tgz": {
			"url": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.1.0.tgz",
			"sha": "813d72a6f0219952b3814f38cd277876802d9ebb",
			"registry": "npmjs"
		},
		"is-utf8-0.2.0.tgz": {
			"url": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.0.tgz",
			"sha": "b8aa54125ae626bfe4e3beb965f16a89c58a1137",
			"registry": "npmjs"
		},
		"is-utf8-0.2.1.tgz": {
			"url": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz",
			"sha": "4b0da1442104d1b336340e80797e865cf39f7d72",
			"registry": "npmjs"
		}
	},
	"_attachments": {
		"is-utf8-0.2.1.tgz": {
			"shasum": "4b0da1442104d1b336340e80797e865cf39f7d72"
		}
	},
	"_rev": "13-a06cb0218ebe4094",
	"_id": "is-utf8",
	"readme": "#utf8 detector\n\nDetect if a Buffer is utf8 encoded. \nIt need The minimum amount of bytes is 4.\n\n\n```javascript\n    var fs = require('fs');\n    var isUtf8 = require('is-utf8');\n    var ansi = fs.readFileSync('ansi.txt');\n    var utf8 = fs.readFileSync('utf8.txt');\n    \n    console.log('ansi.txt is utf8: '+isUtf8(ansi)); //false\n    console.log('utf8.txt is utf8: '+isUtf8(utf8)); //true\n```"
}