Index: node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-url/node_modules/rc/node_modules/ini/test/fixtures/foo.ini |
diff --git a/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-url/node_modules/rc/node_modules/ini/test/fixtures/foo.ini b/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-url/node_modules/rc/node_modules/ini/test/fixtures/foo.ini |
index 1d81378fd680178250d81c03e3257e7544612e85..27555e9d82d1d677702a8f723dd80e34bce0d45e 100644 |
--- a/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-url/node_modules/rc/node_modules/ini/test/fixtures/foo.ini |
+++ b/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-url/node_modules/rc/node_modules/ini/test/fixtures/foo.ini |
@@ -8,6 +8,16 @@ o = p |
; wrap in quotes to get a key with a bracket, not a section. |
"[disturbing]" = hey you never know |
+; Test single quotes |
+s = 'something' |
+ |
+; Test mixing quotes |
+ |
+s1 = "something' |
+ |
+; Test double quotes |
+s2 = "something else" |
+ |
; Test arrays |
zr[] = deedee |
ar[] = one |
@@ -45,3 +55,9 @@ a.b.c = abc |
; this next one is not a comment! it's escaped! |
nocomment = this\; this is not a comment |
+ |
+# Support the use of the number sign (#) as an alternative to the semicolon for indicating comments. |
+# http://en.wikipedia.org/wiki/INI_file#Comments |
+ |
+# this next one is not a comment! it's escaped! |
+noHashComment = this\# this is not a comment |