Comparing version 1.0.3 to 1.0.4
@@ -46,2 +46,3 @@ 'use strict'; | ||
extension['.appcache'] = | ||
extension[''] = styles.hash; | ||
@@ -48,0 +49,0 @@ |
{ | ||
"name": "commenting", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Wrap content in a comment that is valid for a given file type.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -82,2 +82,11 @@ describe('commenting', function () { | ||
}); | ||
it('maps appcache extension to hash', function () { | ||
var comment = commenting(['hello', 'world'], { | ||
extension: '.appcache' | ||
}); | ||
assume(comment).includes('# hello\n'); | ||
assume(comment).includes('# world\n'); | ||
}); | ||
}); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7515
154