jekyll-theme-clean-portfolio 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (115) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +674 -0
  3. data/README.md +54 -0
  4. data/_includes/footer.html +30 -0
  5. data/_includes/head.html +25 -0
  6. data/_includes/header.html +74 -0
  7. data/_includes/modal_img.html +34 -0
  8. data/_layouts/blank.html +7 -0
  9. data/_layouts/default.html +16 -0
  10. data/_layouts/page.html +9 -0
  11. data/_layouts/post.html +21 -0
  12. data/assets/css/bootstrap/_alert.scss +51 -0
  13. data/assets/css/bootstrap/_badge.scss +47 -0
  14. data/assets/css/bootstrap/_breadcrumb.scss +38 -0
  15. data/assets/css/bootstrap/_button-group.scss +166 -0
  16. data/assets/css/bootstrap/_buttons.scss +143 -0
  17. data/assets/css/bootstrap/_card.scss +270 -0
  18. data/assets/css/bootstrap/_carousel.scss +191 -0
  19. data/assets/css/bootstrap/_close.scss +34 -0
  20. data/assets/css/bootstrap/_code.scss +56 -0
  21. data/assets/css/bootstrap/_custom-forms.scss +297 -0
  22. data/assets/css/bootstrap/_dropdown.scss +131 -0
  23. data/assets/css/bootstrap/_forms.scss +333 -0
  24. data/assets/css/bootstrap/_functions.scss +86 -0
  25. data/assets/css/bootstrap/_grid.scss +52 -0
  26. data/assets/css/bootstrap/_images.scss +42 -0
  27. data/assets/css/bootstrap/_input-group.scss +159 -0
  28. data/assets/css/bootstrap/_jumbotron.scss +16 -0
  29. data/assets/css/bootstrap/_list-group.scss +115 -0
  30. data/assets/css/bootstrap/_media.scss +8 -0
  31. data/assets/css/bootstrap/_mixins.scss +42 -0
  32. data/assets/css/bootstrap/_modal.scss +168 -0
  33. data/assets/css/bootstrap/_nav.scss +118 -0
  34. data/assets/css/bootstrap/_navbar.scss +311 -0
  35. data/assets/css/bootstrap/_pagination.scss +77 -0
  36. data/assets/css/bootstrap/_popover.scss +183 -0
  37. data/assets/css/bootstrap/_print.scss +124 -0
  38. data/assets/css/bootstrap/_progress.scss +33 -0
  39. data/assets/css/bootstrap/_reboot.scss +482 -0
  40. data/assets/css/bootstrap/_root.scss +19 -0
  41. data/assets/css/bootstrap/_tables.scss +180 -0
  42. data/assets/css/bootstrap/_tooltip.scss +115 -0
  43. data/assets/css/bootstrap/_transitions.scss +36 -0
  44. data/assets/css/bootstrap/_type.scss +125 -0
  45. data/assets/css/bootstrap/_utilities.scss +14 -0
  46. data/assets/css/bootstrap/_variables.scss +894 -0
  47. data/assets/css/bootstrap/bootstrap-grid.scss +32 -0
  48. data/assets/css/bootstrap/bootstrap-reboot.scss +12 -0
  49. data/assets/css/bootstrap/bootstrap.scss +42 -0
  50. data/assets/css/bootstrap/mixins/_alert.scss +13 -0
  51. data/assets/css/bootstrap/mixins/_background-variant.scss +21 -0
  52. data/assets/css/bootstrap/mixins/_badge.scss +12 -0
  53. data/assets/css/bootstrap/mixins/_border-radius.scss +35 -0
  54. data/assets/css/bootstrap/mixins/_box-shadow.scss +5 -0
  55. data/assets/css/bootstrap/mixins/_breakpoints.scss +123 -0
  56. data/assets/css/bootstrap/mixins/_buttons.scss +109 -0
  57. data/assets/css/bootstrap/mixins/_caret.scss +65 -0
  58. data/assets/css/bootstrap/mixins/_clearfix.scss +7 -0
  59. data/assets/css/bootstrap/mixins/_float.scss +11 -0
  60. data/assets/css/bootstrap/mixins/_forms.scss +137 -0
  61. data/assets/css/bootstrap/mixins/_gradients.scss +45 -0
  62. data/assets/css/bootstrap/mixins/_grid-framework.scss +67 -0
  63. data/assets/css/bootstrap/mixins/_grid.scss +52 -0
  64. data/assets/css/bootstrap/mixins/_hover.scss +39 -0
  65. data/assets/css/bootstrap/mixins/_image.scss +36 -0
  66. data/assets/css/bootstrap/mixins/_list-group.scss +21 -0
  67. data/assets/css/bootstrap/mixins/_lists.scss +7 -0
  68. data/assets/css/bootstrap/mixins/_nav-divider.scss +10 -0
  69. data/assets/css/bootstrap/mixins/_navbar-align.scss +10 -0
  70. data/assets/css/bootstrap/mixins/_pagination.scss +22 -0
  71. data/assets/css/bootstrap/mixins/_reset-text.scss +17 -0
  72. data/assets/css/bootstrap/mixins/_resize.scss +6 -0
  73. data/assets/css/bootstrap/mixins/_screen-reader.scss +35 -0
  74. data/assets/css/bootstrap/mixins/_size.scss +6 -0
  75. data/assets/css/bootstrap/mixins/_table-row.scss +30 -0
  76. data/assets/css/bootstrap/mixins/_text-emphasis.scss +14 -0
  77. data/assets/css/bootstrap/mixins/_text-hide.scss +9 -0
  78. data/assets/css/bootstrap/mixins/_text-truncate.scss +8 -0
  79. data/assets/css/bootstrap/mixins/_transition.scss +9 -0
  80. data/assets/css/bootstrap/mixins/_visibility.scss +7 -0
  81. data/assets/css/bootstrap/utilities/_align.scss +8 -0
  82. data/assets/css/bootstrap/utilities/_background.scss +19 -0
  83. data/assets/css/bootstrap/utilities/_borders.scss +59 -0
  84. data/assets/css/bootstrap/utilities/_clearfix.scss +3 -0
  85. data/assets/css/bootstrap/utilities/_display.scss +38 -0
  86. data/assets/css/bootstrap/utilities/_embed.scss +52 -0
  87. data/assets/css/bootstrap/utilities/_flex.scss +46 -0
  88. data/assets/css/bootstrap/utilities/_float.scss +9 -0
  89. data/assets/css/bootstrap/utilities/_position.scss +36 -0
  90. data/assets/css/bootstrap/utilities/_screenreaders.scss +11 -0
  91. data/assets/css/bootstrap/utilities/_sizing.scss +12 -0
  92. data/assets/css/bootstrap/utilities/_spacing.scss +51 -0
  93. data/assets/css/bootstrap/utilities/_text.scss +52 -0
  94. data/assets/css/bootstrap/utilities/_visibility.scss +11 -0
  95. data/assets/css/custom/includes/_base.scss +240 -0
  96. data/assets/css/custom/includes/_layout.scss +27 -0
  97. data/assets/css/custom/includes/_syntax-highlighting.scss +67 -0
  98. data/assets/css/main.scss +100 -0
  99. data/assets/docs/dummy.pdf +0 -0
  100. data/assets/fonts/Segoe UI Bold Italic.ttf +0 -0
  101. data/assets/fonts/Segoe UI Bold.ttf +0 -0
  102. data/assets/fonts/Segoe UI Italic.ttf +0 -0
  103. data/assets/fonts/Segoe UI.ttf +0 -0
  104. data/assets/fonts/weblysleekuil.eot +0 -0
  105. data/assets/fonts/weblysleekuil.svg +151 -0
  106. data/assets/fonts/weblysleekuil.ttf +0 -0
  107. data/assets/fonts/weblysleekuil.woff +0 -0
  108. data/assets/icons/icon.png +0 -0
  109. data/assets/icons/icon_a.png +0 -0
  110. data/assets/icons/icon_b.png +0 -0
  111. data/assets/icons/icon_c.png +0 -0
  112. data/assets/images/profile.png +0 -0
  113. data/assets/scripts/all.js +4387 -0
  114. data/assets/scripts/yaml.min.js +1269 -0
  115. metadata +395 -0
@@ -0,0 +1,1269 @@
1
+
2
+
3
+
4
+
5
+
6
+
7
+ <!DOCTYPE html>
8
+ <html lang="en">
9
+ <head>
10
+ <meta charset="utf-8">
11
+ <link rel="dns-prefetch" href="https://github.githubassets.com">
12
+ <link rel="dns-prefetch" href="https://avatars0.githubusercontent.com">
13
+ <link rel="dns-prefetch" href="https://avatars1.githubusercontent.com">
14
+ <link rel="dns-prefetch" href="https://avatars2.githubusercontent.com">
15
+ <link rel="dns-prefetch" href="https://avatars3.githubusercontent.com">
16
+ <link rel="dns-prefetch" href="https://github-cloud.s3.amazonaws.com">
17
+ <link rel="dns-prefetch" href="https://user-images.githubusercontent.com/">
18
+
19
+
20
+
21
+ <link crossorigin="anonymous" media="all" integrity="sha512-hddDYPWR0gBbqLRmIZP242WMEiYsVkYI2UCYCVUHB4h5DhD2cbtFJYG+HPh21dZGb+sbgDHxQBNJCBq7YbmlBQ==" rel="stylesheet" href="https://github.githubassets.com/assets/frameworks-02a3eaa24db2bd1ed9b64450595fc2cf.css" />
22
+
23
+ <link crossorigin="anonymous" media="all" integrity="sha512-YdIM/FwAk7kxvPGCpeT2JXxPrThv4m9rH7fLzjn+dg3zKb+PWOaxX1ioiOcmOb64+LeDKgBXsGL4b/BJQY/cdA==" rel="stylesheet" href="https://github.githubassets.com/assets/github-102d2679bcc893600ce928d5c6d34297.css" />
24
+
25
+
26
+
27
+
28
+
29
+
30
+ <meta name="viewport" content="width=device-width">
31
+
32
+ <title>yaml-js/yaml.min.js at master · connec/yaml-js</title>
33
+ <meta name="description" content="A port of PyYAML to CommonJS. Contribute to connec/yaml-js development by creating an account on GitHub.">
34
+ <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub">
35
+ <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub">
36
+ <meta property="fb:app_id" content="1401488693436528">
37
+
38
+ <meta name="twitter:image:src" content="https://avatars3.githubusercontent.com/u/160652?s=400&amp;v=4" /><meta name="twitter:site" content="@github" /><meta name="twitter:card" content="summary" /><meta name="twitter:title" content="connec/yaml-js" /><meta name="twitter:description" content="A port of PyYAML to CommonJS. Contribute to connec/yaml-js development by creating an account on GitHub." />
39
+ <meta property="og:image" content="https://avatars3.githubusercontent.com/u/160652?s=400&amp;v=4" /><meta property="og:site_name" content="GitHub" /><meta property="og:type" content="object" /><meta property="og:title" content="connec/yaml-js" /><meta property="og:url" content="https://github.com/connec/yaml-js" /><meta property="og:description" content="A port of PyYAML to CommonJS. Contribute to connec/yaml-js development by creating an account on GitHub." />
40
+
41
+ <link rel="assets" href="https://github.githubassets.com/">
42
+ <link rel="web-socket" href="wss://live.github.com/_sockets/VjI6NDc4NzYyODgyOjMwNDViZTdhZWI1NjZiZTIyNTI2MmQ4YWUyOGNjZDIyYzZhMzdjOTIyYzk5MTQ2MDIzMTA0OTBkZWMwODNjOWQ=--d84c29d74820b1cb0fae72d1cc8a5cb0184ef3e8">
43
+ <link rel="sudo-modal" href="/sessions/sudo_modal">
44
+
45
+ <meta name="request-id" content="DB25:1DC7:1EA81C5:2CA73EF:5E09CCA9" data-pjax-transient>
46
+
47
+
48
+
49
+
50
+
51
+ <meta name="selected-link" value="repo_source" data-pjax-transient>
52
+
53
+ <meta name="google-site-verification" content="KT5gs8h0wvaagLKAVWq8bbeNwnZZK1r1XQysX3xurLU">
54
+ <meta name="google-site-verification" content="ZzhVyEFwb7w3e0-uOTltm8Jsck2F5StVihD0exw2fsA">
55
+ <meta name="google-site-verification" content="GXs5KoUUkNCoaAZn7wPN-t01Pywp9M3sEjnt_3_ZWPc">
56
+
57
+ <meta name="octolytics-host" content="collector.githubapp.com" /><meta name="octolytics-app-id" content="github" /><meta name="octolytics-event-url" content="https://collector.githubapp.com/github-external/browser_event" /><meta name="octolytics-dimension-request_id" content="DB25:1DC7:1EA81C5:2CA73EF:5E09CCA9" /><meta name="octolytics-dimension-region_edge" content="ap-south-1" /><meta name="octolytics-dimension-region_render" content="iad" /><meta name="octolytics-dimension-ga_id" content="" class="js-octo-ga-id" /><meta name="octolytics-dimension-visitor_id" content="4458885506073149058" /><meta name="octolytics-actor-id" content="25822972" /><meta name="octolytics-actor-login" content="ad1tyawagh" /><meta name="octolytics-actor-hash" content="a36e6395ed8802884148ab468bff960bef0bb8473e6bd82631d05d320b84fde0" />
58
+
59
+ <meta name="analytics-location" content="/&lt;user-name&gt;/&lt;repo-name&gt;/blob/show" data-pjax-transient="true" />
60
+
61
+
62
+
63
+ <meta name="google-analytics" content="UA-3769691-2">
64
+
65
+ <meta class="js-ga-set" name="userId" content="19a7795b9f1ee77faad2b7e3060df4fb">
66
+
67
+ <meta class="js-ga-set" name="dimension1" content="Logged In">
68
+
69
+
70
+
71
+
72
+
73
+ <meta name="hostname" content="github.com">
74
+ <meta name="user-login" content="ad1tyawagh">
75
+
76
+ <meta name="expected-hostname" content="github.com">
77
+
78
+ <meta name="js-proxy-site-detection-payload" content="Yzc2OTJhYjEyZjU4NTAwY2NmNWRiYTkwNjRhN2RjNTkxMGZmMDg3NWQwZWNlNWQ0OWEyOWZhYjQ1OTBjOWI5M3x7InJlbW90ZV9hZGRyZXNzIjoiMTIzLjIwMS41NC44MiIsInJlcXVlc3RfaWQiOiJEQjI1OjFEQzc6MUVBODFDNToyQ0E3M0VGOjVFMDlDQ0E5IiwidGltZXN0YW1wIjoxNTc3NzAwNTY1LCJob3N0IjoiZ2l0aHViLmNvbSJ9">
79
+
80
+ <meta name="enabled-features" content="MARKETPLACE_FEATURED_BLOG_POSTS,MARKETPLACE_INVOICED_BILLING,MARKETPLACE_SOCIAL_PROOF_CUSTOMERS,MARKETPLACE_TRENDING_SOCIAL_PROOF,MARKETPLACE_RECOMMENDATIONS,MARKETPLACE_PENDING_INSTALLATIONS,NOTIFY_ON_BLOCK,RELATED_ISSUES,GHE_CLOUD_TRIAL">
81
+
82
+ <meta name="html-safe-nonce" content="bb4f6a7864f4c958fa499265420cf7fdac9b22b2">
83
+
84
+ <meta http-equiv="x-pjax-version" content="61f8c219e8739359a3bf9c46bc342ad6">
85
+
86
+
87
+ <link href="https://github.com/connec/yaml-js/commits/master.atom" rel="alternate" title="Recent Commits to yaml-js:master" type="application/atom+xml">
88
+
89
+ <meta name="go-import" content="github.com/connec/yaml-js git https://github.com/connec/yaml-js.git">
90
+
91
+ <meta name="octolytics-dimension-user_id" content="160652" /><meta name="octolytics-dimension-user_login" content="connec" /><meta name="octolytics-dimension-repository_id" content="2678133" /><meta name="octolytics-dimension-repository_nwo" content="connec/yaml-js" /><meta name="octolytics-dimension-repository_public" content="true" /><meta name="octolytics-dimension-repository_is_fork" content="false" /><meta name="octolytics-dimension-repository_network_root_id" content="2678133" /><meta name="octolytics-dimension-repository_network_root_nwo" content="connec/yaml-js" /><meta name="octolytics-dimension-repository_explore_github_marketplace_ci_cta_shown" content="false" />
92
+
93
+
94
+ <link rel="canonical" href="https://github.com/connec/yaml-js/blob/master/yaml.min.js" data-pjax-transient>
95
+
96
+
97
+ <meta name="browser-stats-url" content="https://api.github.com/_private/browser/stats">
98
+
99
+ <meta name="browser-errors-url" content="https://api.github.com/_private/browser/errors">
100
+
101
+ <link rel="mask-icon" href="https://github.githubassets.com/pinned-octocat.svg" color="#000000">
102
+ <link rel="icon" type="image/x-icon" class="js-site-favicon" href="https://github.githubassets.com/favicon.ico">
103
+
104
+ <meta name="theme-color" content="#1e2327">
105
+
106
+
107
+
108
+ <meta name="webauthn-auth-enabled" content="true">
109
+
110
+ <meta name="webauthn-registration-enabled" content="true">
111
+
112
+ <link rel="manifest" href="/manifest.json" crossOrigin="use-credentials">
113
+
114
+ </head>
115
+
116
+ <body class="logged-in env-production page-responsive page-blob">
117
+
118
+
119
+ <div class="position-relative js-header-wrapper ">
120
+ <a href="#start-of-content" tabindex="1" class="p-3 bg-blue text-white show-on-focus js-skip-to-content">Skip to content</a>
121
+ <span class="Progress progress-pjax-loader position-fixed width-full js-pjax-loader-bar">
122
+ <span class="progress-pjax-loader-bar top-0 left-0" style="width: 0%;"></span>
123
+ </span>
124
+
125
+
126
+
127
+
128
+
129
+
130
+ <header class="Header js-details-container Details flex-wrap flex-lg-nowrap p-responsive" role="banner">
131
+
132
+ <div class="Header-item d-none d-lg-flex">
133
+ <a class="Header-link" href="https://github.com/" data-hotkey="g d" aria-label="Homepage" data-ga-click="Header, go to dashboard, icon:logo">
134
+ <svg class="octicon octicon-mark-github v-align-middle" height="32" viewBox="0 0 16 16" version="1.1" width="32" aria-hidden="true"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"/></svg>
135
+ </a>
136
+
137
+ </div>
138
+
139
+ <div class="Header-item d-lg-none">
140
+ <button class="Header-link btn-link js-details-target" type="button" aria-label="Toggle navigation" aria-expanded="false">
141
+ <svg height="24" class="octicon octicon-three-bars" viewBox="0 0 12 16" version="1.1" width="18" aria-hidden="true"><path fill-rule="evenodd" d="M11.41 9H.59C0 9 0 8.59 0 8c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zm0-4H.59C0 5 0 4.59 0 4c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zM.59 11H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1H.59C0 13 0 12.59 0 12c0-.59 0-1 .59-1z"/></svg>
142
+ </button>
143
+ </div>
144
+
145
+ <div class="Header-item Header-item--full flex-column flex-lg-row width-full flex-order-2 flex-lg-order-none mr-0 mr-lg-3 mt-3 mt-lg-0 Details-content--hidden">
146
+ <div class="header-search flex-self-stretch flex-lg-self-auto mr-0 mr-lg-3 mb-3 mb-lg-0 scoped-search site-scoped-search js-site-search position-relative js-jump-to"
147
+ role="combobox"
148
+ aria-owns="jump-to-results"
149
+ aria-label="Search or jump to"
150
+ aria-haspopup="listbox"
151
+ aria-expanded="false"
152
+ >
153
+ <div class="position-relative">
154
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form class="js-site-search-form" role="search" aria-label="Site" data-scope-type="Repository" data-scope-id="2678133" data-scoped-search-url="/connec/yaml-js/search" data-unscoped-search-url="/search" action="/connec/yaml-js/search" accept-charset="UTF-8" method="get"><input name="utf8" type="hidden" value="&#x2713;" />
155
+ <label class="form-control input-sm header-search-wrapper p-0 header-search-wrapper-jump-to position-relative d-flex flex-justify-between flex-items-center js-chromeless-input-container">
156
+ <input type="text"
157
+ class="form-control input-sm header-search-input jump-to-field js-jump-to-field js-site-search-focus js-site-search-field is-clearable"
158
+ data-hotkey="s,/"
159
+ name="q"
160
+ value=""
161
+ placeholder="Search or jump to…"
162
+ data-unscoped-placeholder="Search or jump to…"
163
+ data-scoped-placeholder="Search or jump to…"
164
+ autocapitalize="off"
165
+ aria-autocomplete="list"
166
+ aria-controls="jump-to-results"
167
+ aria-label="Search or jump to…"
168
+ data-jump-to-suggestions-path="/_graphql/GetSuggestedNavigationDestinations#csrf-token=k3onm/u3d0qYPspKzNSKhm8ExiOdR/a9c/BcXFxLmMbtbsdSKgTTI5v0Lya0VjM4Fhbn9qjLrTREv4M4gSOMMg=="
169
+ spellcheck="false"
170
+ autocomplete="off"
171
+ >
172
+ <input type="hidden" class="js-site-search-type-field" name="type" >
173
+ <img src="https://github.githubassets.com/images/search-key-slash.svg" alt="" class="mr-2 header-search-key-slash">
174
+
175
+ <div class="Box position-absolute overflow-hidden d-none jump-to-suggestions js-jump-to-suggestions-container">
176
+
177
+ <ul class="d-none js-jump-to-suggestions-template-container">
178
+
179
+
180
+ <li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-suggestion" role="option">
181
+ <a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="">
182
+ <div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
183
+ <svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 12 16" version="1.1" role="img"><path fill-rule="evenodd" d="M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"/></svg>
184
+ <svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 15 16" version="1.1" role="img"><path fill-rule="evenodd" d="M10 12h3V2h-3v10zm-4-2h3V2H6v8zm-4 4h3V2H2v12zm-1 1h13V1H1v14zM14 0H1a1 1 0 00-1 1v14a1 1 0 001 1h13a1 1 0 001-1V1a1 1 0 00-1-1z"/></svg>
185
+ <svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M15.7 13.3l-3.81-3.83A5.93 5.93 0 0013 6c0-3.31-2.69-6-6-6S1 2.69 1 6s2.69 6 6 6c1.3 0 2.48-.41 3.47-1.11l3.83 3.81c.19.2.45.3.7.3.25 0 .52-.09.7-.3a.996.996 0 000-1.41v.01zM7 10.7c-2.59 0-4.7-2.11-4.7-4.7 0-2.59 2.11-4.7 4.7-4.7 2.59 0 4.7 2.11 4.7 4.7 0 2.59-2.11 4.7-4.7 4.7z"/></svg>
186
+ </div>
187
+
188
+ <img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
189
+
190
+ <div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
191
+ </div>
192
+
193
+ <div class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none js-jump-to-badge-search">
194
+ <span class="js-jump-to-badge-search-text-default d-none" aria-label="in this repository">
195
+ In this repository
196
+ </span>
197
+ <span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
198
+ All GitHub
199
+ </span>
200
+ <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
201
+ </div>
202
+
203
+ <div aria-hidden="true" class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
204
+ Jump to
205
+ <span class="d-inline-block ml-1 v-align-middle">↵</span>
206
+ </div>
207
+ </a>
208
+ </li>
209
+
210
+ </ul>
211
+
212
+ <ul class="d-none js-jump-to-no-results-template-container">
213
+ <li class="d-flex flex-justify-center flex-items-center f5 d-none js-jump-to-suggestion p-2">
214
+ <span class="text-gray">No suggested jump to results</span>
215
+ </li>
216
+ </ul>
217
+
218
+ <ul id="jump-to-results" role="listbox" class="p-0 m-0 js-navigation-container jump-to-suggestions-results-container js-jump-to-suggestions-results-container">
219
+
220
+
221
+ <li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-scoped-search d-none" role="option">
222
+ <a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="">
223
+ <div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
224
+ <svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 12 16" version="1.1" role="img"><path fill-rule="evenodd" d="M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"/></svg>
225
+ <svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 15 16" version="1.1" role="img"><path fill-rule="evenodd" d="M10 12h3V2h-3v10zm-4-2h3V2H6v8zm-4 4h3V2H2v12zm-1 1h13V1H1v14zM14 0H1a1 1 0 00-1 1v14a1 1 0 001 1h13a1 1 0 001-1V1a1 1 0 00-1-1z"/></svg>
226
+ <svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M15.7 13.3l-3.81-3.83A5.93 5.93 0 0013 6c0-3.31-2.69-6-6-6S1 2.69 1 6s2.69 6 6 6c1.3 0 2.48-.41 3.47-1.11l3.83 3.81c.19.2.45.3.7.3.25 0 .52-.09.7-.3a.996.996 0 000-1.41v.01zM7 10.7c-2.59 0-4.7-2.11-4.7-4.7 0-2.59 2.11-4.7 4.7-4.7 2.59 0 4.7 2.11 4.7 4.7 0 2.59-2.11 4.7-4.7 4.7z"/></svg>
227
+ </div>
228
+
229
+ <img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
230
+
231
+ <div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
232
+ </div>
233
+
234
+ <div class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none js-jump-to-badge-search">
235
+ <span class="js-jump-to-badge-search-text-default d-none" aria-label="in this repository">
236
+ In this repository
237
+ </span>
238
+ <span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
239
+ All GitHub
240
+ </span>
241
+ <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
242
+ </div>
243
+
244
+ <div aria-hidden="true" class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
245
+ Jump to
246
+ <span class="d-inline-block ml-1 v-align-middle">↵</span>
247
+ </div>
248
+ </a>
249
+ </li>
250
+
251
+
252
+
253
+ <li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-global-search d-none" role="option">
254
+ <a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="">
255
+ <div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
256
+ <svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 12 16" version="1.1" role="img"><path fill-rule="evenodd" d="M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"/></svg>
257
+ <svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 15 16" version="1.1" role="img"><path fill-rule="evenodd" d="M10 12h3V2h-3v10zm-4-2h3V2H6v8zm-4 4h3V2H2v12zm-1 1h13V1H1v14zM14 0H1a1 1 0 00-1 1v14a1 1 0 001 1h13a1 1 0 001-1V1a1 1 0 00-1-1z"/></svg>
258
+ <svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M15.7 13.3l-3.81-3.83A5.93 5.93 0 0013 6c0-3.31-2.69-6-6-6S1 2.69 1 6s2.69 6 6 6c1.3 0 2.48-.41 3.47-1.11l3.83 3.81c.19.2.45.3.7.3.25 0 .52-.09.7-.3a.996.996 0 000-1.41v.01zM7 10.7c-2.59 0-4.7-2.11-4.7-4.7 0-2.59 2.11-4.7 4.7-4.7 2.59 0 4.7 2.11 4.7 4.7 0 2.59-2.11 4.7-4.7 4.7z"/></svg>
259
+ </div>
260
+
261
+ <img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
262
+
263
+ <div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
264
+ </div>
265
+
266
+ <div class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none js-jump-to-badge-search">
267
+ <span class="js-jump-to-badge-search-text-default d-none" aria-label="in this repository">
268
+ In this repository
269
+ </span>
270
+ <span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
271
+ All GitHub
272
+ </span>
273
+ <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
274
+ </div>
275
+
276
+ <div aria-hidden="true" class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
277
+ Jump to
278
+ <span class="d-inline-block ml-1 v-align-middle">↵</span>
279
+ </div>
280
+ </a>
281
+ </li>
282
+
283
+
284
+ <li class="d-flex flex-justify-center flex-items-center p-0 f5 js-jump-to-suggestion">
285
+ <img src="https://github.githubassets.com/images/spinners/octocat-spinner-128.gif" alt="Octocat Spinner Icon" class="m-2" width="28">
286
+ </li>
287
+ </ul>
288
+
289
+ </div>
290
+ </label>
291
+ </form> </div>
292
+ </div>
293
+
294
+
295
+ <nav class="d-flex flex-column flex-lg-row flex-self-stretch flex-lg-self-auto" aria-label="Global">
296
+ <a class="Header-link d-block d-lg-none py-2 py-lg-0 border-top border-lg-top-0 border-white-fade-15" data-ga-click="Header, click, Nav menu - item:dashboard:user" aria-label="Dashboard" href="/dashboard">
297
+ Dashboard
298
+ </a>
299
+ <a class="js-selected-navigation-item Header-link mr-0 mr-lg-3 py-2 py-lg-0 border-top border-lg-top-0 border-white-fade-15" data-hotkey="g p" data-ga-click="Header, click, Nav menu - item:pulls context:user" aria-label="Pull requests you created" data-selected-links="/pulls /pulls/assigned /pulls/mentioned /pulls" href="/pulls">
300
+ Pull requests
301
+ </a>
302
+ <a class="js-selected-navigation-item Header-link mr-0 mr-lg-3 py-2 py-lg-0 border-top border-lg-top-0 border-white-fade-15" data-hotkey="g i" data-ga-click="Header, click, Nav menu - item:issues context:user" aria-label="Issues you created" data-selected-links="/issues /issues/assigned /issues/mentioned /issues" href="/issues">
303
+ Issues
304
+ </a>
305
+ <div class="mr-0 mr-lg-3 py-2 py-lg-0 border-top border-lg-top-0 border-white-fade-15">
306
+ <a class="js-selected-navigation-item Header-link" data-ga-click="Header, click, Nav menu - item:marketplace context:user" data-octo-click="marketplace_click" data-octo-dimensions="location:nav_bar" data-selected-links=" /marketplace" href="/marketplace">
307
+ Marketplace
308
+ </a>
309
+
310
+ </div>
311
+
312
+ <a class="js-selected-navigation-item Header-link mr-0 mr-lg-3 py-2 py-lg-0 border-top border-lg-top-0 border-white-fade-15" data-ga-click="Header, click, Nav menu - item:explore" data-selected-links="/explore /trending /trending/developers /integrations /integrations/feature/code /integrations/feature/collaborate /integrations/feature/ship showcases showcases_search showcases_landing /explore" href="/explore">
313
+ Explore
314
+ </a>
315
+
316
+
317
+ <a class="Header-link d-block d-lg-none mr-0 mr-lg-3 py-2 py-lg-0 border-top border-lg-top-0 border-white-fade-15" href="https://github.com/ad1tyawagh">
318
+ <img class="avatar" height="20" width="20" alt="@ad1tyawagh" src="https://avatars1.githubusercontent.com/u/25822972?s=60&amp;v=4" />
319
+ ad1tyawagh
320
+ </a>
321
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form action="/logout" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><input type="hidden" name="authenticity_token" value="FQB9vGaMbk5uvQXwU4nlvVQLSAaFtuhkHYvJFQzhYicB52Ko7M22mh7j3oodT0kNAmnfkMZh4L7NR0g173LIkg==" />
322
+ <button type="submit" class="Header-link mr-0 mr-lg-3 py-2 py-lg-0 border-top border-lg-top-0 border-white-fade-15 d-lg-none btn-link d-block width-full text-left" data-ga-click="Header, sign out, icon:logout" style="padding-left: 2px;">
323
+ <svg class="octicon octicon-sign-out v-align-middle" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M12 9V7H8V5h4V3l4 3-4 3zm-2 3H6V3L2 1h8v3h1V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v11.38c0 .39.22.73.55.91L6 16.01V13h4c.55 0 1-.45 1-1V8h-1v4z"/></svg>
324
+ Sign out
325
+ </button>
326
+ </form></nav>
327
+
328
+ </div>
329
+
330
+ <div class="Header-item Header-item--full flex-justify-center d-lg-none position-relative">
331
+ <div class="css-truncate css-truncate-target width-fit position-absolute left-0 right-0 text-center">
332
+ <svg class="octicon octicon-repo" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"/></svg>
333
+ <a class="Header-link" href="/connec">connec</a>
334
+ /
335
+ <a class="Header-link" href="/connec/yaml-js">yaml-js</a>
336
+
337
+ </div>
338
+ </div>
339
+
340
+
341
+ <div class="Header-item mr-0 mr-lg-3 flex-order-1 flex-lg-order-none">
342
+
343
+
344
+ <a aria-label="You have no unread notifications" class="Header-link notification-indicator position-relative tooltipped tooltipped-sw js-socket-channel js-notification-indicator" data-hotkey="g n" data-ga-click="Header, go to notifications, icon:read" data-channel="notification-changed:25822972" href="/notifications">
345
+ <span class="mail-status "></span>
346
+ <svg class="octicon octicon-bell" viewBox="0 0 14 16" version="1.1" width="14" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M14 12v1H0v-1l.73-.58c.77-.77.81-2.55 1.19-4.42C2.69 3.23 6 2 6 2c0-.55.45-1 1-1s1 .45 1 1c0 0 3.39 1.23 4.16 5 .38 1.88.42 3.66 1.19 4.42l.66.58H14zm-7 4c1.11 0 2-.89 2-2H5c0 1.11.89 2 2 2z"/></svg>
347
+ </a>
348
+ </div>
349
+
350
+
351
+ <div class="Header-item position-relative d-none d-lg-flex">
352
+ <details class="details-overlay details-reset">
353
+ <summary class="Header-link"
354
+ aria-label="Create new…"
355
+ data-ga-click="Header, create new, icon:add">
356
+ <svg class="octicon octicon-plus" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M12 9H7v5H5V9H0V7h5V2h2v5h5v2z"/></svg> <span class="dropdown-caret"></span>
357
+ </summary>
358
+ <details-menu class="dropdown-menu dropdown-menu-sw">
359
+
360
+ <a role="menuitem" class="dropdown-item" href="/new" data-ga-click="Header, create new repository">
361
+ New repository
362
+ </a>
363
+
364
+ <a role="menuitem" class="dropdown-item" href="/new/import" data-ga-click="Header, import a repository">
365
+ Import repository
366
+ </a>
367
+
368
+ <a role="menuitem" class="dropdown-item" href="https://gist.github.com/" data-ga-click="Header, create new gist">
369
+ New gist
370
+ </a>
371
+
372
+ <a role="menuitem" class="dropdown-item" href="/organizations/new" data-ga-click="Header, create new organization">
373
+ New organization
374
+ </a>
375
+
376
+
377
+ <div role="none" class="dropdown-divider"></div>
378
+ <div class="dropdown-header">
379
+ <span title="connec/yaml-js">This repository</span>
380
+ </div>
381
+ <a role="menuitem" class="dropdown-item" href="/connec/yaml-js/issues/new" data-ga-click="Header, create new issue" data-skip-pjax>
382
+ New issue
383
+ </a>
384
+
385
+
386
+ </details-menu>
387
+ </details>
388
+
389
+ </div>
390
+
391
+ <div class="Header-item position-relative mr-0 d-none d-lg-flex">
392
+
393
+ <details class="details-overlay details-reset js-feature-preview-indicator-container" data-feature-preview-indicator-src="/users/ad1tyawagh/feature_preview/indicator_check.json">
394
+
395
+ <summary class="Header-link"
396
+ aria-label="View profile and more"
397
+ data-ga-click="Header, show menu, icon:avatar">
398
+ <img alt="@ad1tyawagh" class="avatar" src="https://avatars2.githubusercontent.com/u/25822972?s=40&amp;v=4" height="20" width="20">
399
+ <span class="feature-preview-indicator js-feature-preview-indicator" hidden></span>
400
+ <span class="dropdown-caret"></span>
401
+ </summary>
402
+ <details-menu class="dropdown-menu dropdown-menu-sw mt-2" style="width: 180px">
403
+ <div class="header-nav-current-user css-truncate"><a role="menuitem" class="no-underline user-profile-link px-3 pt-2 pb-2 mb-n2 mt-n1 d-block" href="/ad1tyawagh" data-ga-click="Header, go to profile, text:Signed in as">Signed in as <strong class="css-truncate-target">ad1tyawagh</strong></a></div>
404
+ <div role="none" class="dropdown-divider"></div>
405
+
406
+ <div class="pl-3 pr-3 f6 user-status-container js-user-status-context pb-1" data-url="/users/status?compact=1&amp;link_mentions=0&amp;truncate=1">
407
+
408
+ <div class="js-user-status-container
409
+ user-status-compact rounded-1 px-2 py-1 mt-2
410
+ border
411
+ " data-team-hovercards-enabled>
412
+ <details class="js-user-status-details details-reset details-overlay details-overlay-dark">
413
+ <summary class="btn-link btn-block link-gray no-underline js-toggle-user-status-edit toggle-user-status-edit "
414
+ role="menuitem" data-hydro-click="{&quot;event_type&quot;:&quot;user_profile.click&quot;,&quot;payload&quot;:{&quot;profile_user_id&quot;:160652,&quot;target&quot;:&quot;EDIT_USER_STATUS&quot;,&quot;user_id&quot;:25822972,&quot;client_id&quot;:&quot;1038165182.1537261186&quot;,&quot;originating_request_id&quot;:&quot;DB25:1DC7:1EA81C5:2CA73EF:5E09CCA9&quot;,&quot;originating_url&quot;:&quot;https://github.com/connec/yaml-js/blob/master/yaml.min.js&quot;,&quot;referrer&quot;:&quot;https://github.com/connec/yaml-js&quot;}}" data-hydro-click-hmac="45c4d109ec3760b9fba02efc01e85e68059b6453fb7fc6960e2a3714e2ec8823">
415
+ <div class="d-flex">
416
+ <div class="f6 lh-condensed user-status-header
417
+ d-inline-block v-align-middle
418
+ user-status-emoji-only-header circle
419
+ pr-2
420
+ "
421
+ style="max-width: 29px"
422
+ >
423
+ <div class="user-status-emoji-container flex-shrink-0 mr-1 lh-condensed-ultra v-align-bottom" style="margin-top: 2px;">
424
+ <div><g-emoji class="g-emoji" alias="smile" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f604.png">😄</g-emoji></div>
425
+ </div>
426
+ </div>
427
+ <div class="
428
+ d-inline-block v-align-middle
429
+
430
+
431
+ css-truncate css-truncate-target
432
+ user-status-message-wrapper f6"
433
+ style="line-height: 20px;" >
434
+ <div class="d-inline-block text-gray-dark v-align-text-top text-left">
435
+ <span>Focusing</span>
436
+ </div>
437
+ </div>
438
+ </div>
439
+ </summary>
440
+ <details-dialog class="details-dialog rounded-1 anim-fade-in fast Box Box--overlay" role="dialog" tabindex="-1">
441
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form class="position-relative flex-auto js-user-status-form" action="/users/status?compact=1&amp;link_mentions=0&amp;truncate=1" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="authenticity_token" value="hjG9GgiYNSkTCGz37Dp8C4m0Bwy8A4/vGXRhSfkFQscfr+mgNZEex70+OZoN0owr+l0DDJ81EJrsVBcfb+V+ow==" />
442
+ <div class="Box-header bg-gray border-bottom p-3">
443
+ <button class="Box-btn-octicon js-toggle-user-status-edit btn-octicon float-right" type="reset" aria-label="Close dialog" data-close-dialog>
444
+ <svg class="octicon octicon-x" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48L7.48 8z"/></svg>
445
+ </button>
446
+ <h3 class="Box-title f5 text-bold text-gray-dark">Edit status</h3>
447
+ </div>
448
+ <input type="hidden" name="emoji" class="js-user-status-emoji-field" value=":smile:">
449
+ <input type="hidden" name="organization_id" class="js-user-status-org-id-field" value="">
450
+ <div class="px-3 py-2 text-gray-dark">
451
+ <div class="js-characters-remaining-container position-relative mt-2">
452
+ <div class="input-group d-table form-group my-0 js-user-status-form-group">
453
+ <span class="input-group-button d-table-cell v-align-middle" style="width: 1%">
454
+ <button type="button" aria-label="Choose an emoji" class="btn-outline btn js-toggle-user-status-emoji-picker btn-open-emoji-picker p-0">
455
+ <span class="js-user-status-original-emoji" hidden><div><g-emoji class="g-emoji" alias="smile" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f604.png">😄</g-emoji></div></span>
456
+ <span class="js-user-status-custom-emoji"><div><g-emoji class="g-emoji" alias="smile" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f604.png">😄</g-emoji></div></span>
457
+ <span class="js-user-status-no-emoji-icon" hidden>
458
+ <svg class="octicon octicon-smiley" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.81 12.81a6.72 6.72 0 01-2.17 1.45c-.83.36-1.72.53-2.64.53-.92 0-1.81-.17-2.64-.53-.81-.34-1.55-.83-2.17-1.45a6.773 6.773 0 01-1.45-2.17A6.59 6.59 0 011.21 8c0-.92.17-1.81.53-2.64.34-.81.83-1.55 1.45-2.17.62-.62 1.36-1.11 2.17-1.45A6.59 6.59 0 018 1.21c.92 0 1.81.17 2.64.53.81.34 1.55.83 2.17 1.45.62.62 1.11 1.36 1.45 2.17.36.83.53 1.72.53 2.64 0 .92-.17 1.81-.53 2.64-.34.81-.83 1.55-1.45 2.17zM4 6.8v-.59c0-.66.53-1.19 1.2-1.19h.59c.66 0 1.19.53 1.19 1.19v.59c0 .67-.53 1.2-1.19 1.2H5.2C4.53 8 4 7.47 4 6.8zm5 0v-.59c0-.66.53-1.19 1.2-1.19h.59c.66 0 1.19.53 1.19 1.19v.59c0 .67-.53 1.2-1.19 1.2h-.59C9.53 8 9 7.47 9 6.8zm4 3.2c-.72 1.88-2.91 3-5 3s-4.28-1.13-5-3c-.14-.39.23-1 .66-1h8.59c.41 0 .89.61.75 1z"/></svg>
459
+ </span>
460
+ </button>
461
+ </span>
462
+ <text-expander keys=": @" data-mention-url="/autocomplete/user-suggestions" data-emoji-url="/autocomplete/emoji">
463
+ <input
464
+ type="text"
465
+ autocomplete="off"
466
+ data-no-org-url="/autocomplete/user-suggestions"
467
+ data-org-url="/suggestions?mention_suggester=1"
468
+ data-maxlength="80"
469
+ class="d-table-cell width-full form-control js-user-status-message-field js-characters-remaining-field"
470
+ placeholder="What's happening?"
471
+ name="message"
472
+ value="Focusing"
473
+ aria-label="What is your current status?">
474
+ </text-expander>
475
+ <div class="error">Could not update your status, please try again.</div>
476
+ </div>
477
+ <div style="margin-left: 53px" class="my-1 text-small label-characters-remaining js-characters-remaining" data-suffix="remaining" hidden>
478
+ 80 remaining
479
+ </div>
480
+ </div>
481
+ <include-fragment class="js-user-status-emoji-picker" data-url="/users/status/emoji"></include-fragment>
482
+ <div class="overflow-auto ml-n3 mr-n3 px-3 border-bottom" style="max-height: 33vh">
483
+ <div class="user-status-suggestions js-user-status-suggestions collapsed overflow-hidden">
484
+ <h4 class="f6 text-normal my-3">Suggestions:</h4>
485
+ <div class="mx-3 mt-2 clearfix">
486
+ <div class="float-left col-6">
487
+ <button type="button" value=":palm_tree:" class="d-flex flex-items-baseline flex-items-stretch lh-condensed f6 btn-link link-gray no-underline js-predefined-user-status mb-1">
488
+ <div class="emoji-status-width mr-2 v-align-middle js-predefined-user-status-emoji">
489
+ <g-emoji alias="palm_tree" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f334.png">🌴</g-emoji>
490
+ </div>
491
+ <div class="d-flex flex-items-center no-underline js-predefined-user-status-message ws-normal text-left" style="border-left: 1px solid transparent">
492
+ On vacation
493
+ </div>
494
+ </button>
495
+ <button type="button" value=":face_with_thermometer:" class="d-flex flex-items-baseline flex-items-stretch lh-condensed f6 btn-link link-gray no-underline js-predefined-user-status mb-1">
496
+ <div class="emoji-status-width mr-2 v-align-middle js-predefined-user-status-emoji">
497
+ <g-emoji alias="face_with_thermometer" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f912.png">🤒</g-emoji>
498
+ </div>
499
+ <div class="d-flex flex-items-center no-underline js-predefined-user-status-message ws-normal text-left" style="border-left: 1px solid transparent">
500
+ Out sick
501
+ </div>
502
+ </button>
503
+ </div>
504
+ <div class="float-left col-6">
505
+ <button type="button" value=":house:" class="d-flex flex-items-baseline flex-items-stretch lh-condensed f6 btn-link link-gray no-underline js-predefined-user-status mb-1">
506
+ <div class="emoji-status-width mr-2 v-align-middle js-predefined-user-status-emoji">
507
+ <g-emoji alias="house" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f3e0.png">🏠</g-emoji>
508
+ </div>
509
+ <div class="d-flex flex-items-center no-underline js-predefined-user-status-message ws-normal text-left" style="border-left: 1px solid transparent">
510
+ Working from home
511
+ </div>
512
+ </button>
513
+ <button type="button" value=":dart:" class="d-flex flex-items-baseline flex-items-stretch lh-condensed f6 btn-link link-gray no-underline js-predefined-user-status mb-1">
514
+ <div class="emoji-status-width mr-2 v-align-middle js-predefined-user-status-emoji">
515
+ <g-emoji alias="dart" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f3af.png">🎯</g-emoji>
516
+ </div>
517
+ <div class="d-flex flex-items-center no-underline js-predefined-user-status-message ws-normal text-left" style="border-left: 1px solid transparent">
518
+ Focusing
519
+ </div>
520
+ </button>
521
+ </div>
522
+ </div>
523
+ </div>
524
+ <div class="user-status-limited-availability-container">
525
+ <div class="form-checkbox my-0">
526
+ <input type="checkbox" name="limited_availability" value="1" class="js-user-status-limited-availability-checkbox" data-default-message="I may be slow to respond." aria-describedby="limited-availability-help-text-truncate-true-compact-true" id="limited-availability-truncate-true-compact-true">
527
+ <label class="d-block f5 text-gray-dark mb-1" for="limited-availability-truncate-true-compact-true">
528
+ Busy
529
+ </label>
530
+ <p class="note" id="limited-availability-help-text-truncate-true-compact-true">
531
+ When others mention you, assign you, or request your review,
532
+ GitHub will let them know that you have limited availability.
533
+ </p>
534
+ </div>
535
+ </div>
536
+ </div>
537
+
538
+
539
+ <div class="d-inline-block f5 mr-2 pt-3 pb-2" >
540
+ <div class="d-inline-block mr-1">
541
+ Clear status
542
+ </div>
543
+
544
+ <details class="js-user-status-expire-drop-down f6 dropdown details-reset details-overlay d-inline-block mr-2">
545
+ <summary class="f5 btn-link link-gray-dark border px-2 py-1 rounded-1" aria-haspopup="true">
546
+ <div class="js-user-status-expiration-interval-selected d-inline-block v-align-baseline">
547
+ Never
548
+ </div>
549
+ <div class="dropdown-caret"></div>
550
+ </summary>
551
+
552
+ <ul class="dropdown-menu dropdown-menu-se pl-0 overflow-auto" style="width: 220px; max-height: 15.5em">
553
+ <li>
554
+ <button type="button" class="btn-link dropdown-item js-user-status-expire-button ws-normal" title="Never">
555
+ <span class="d-inline-block text-bold mb-1">Never</span>
556
+ <div class="f6 lh-condensed">Keep this status until you clear your status or edit your status.</div>
557
+ </button>
558
+ </li>
559
+ <li class="dropdown-divider" role="none"></li>
560
+ <li>
561
+ <button type="button" class="btn-link dropdown-item ws-normal js-user-status-expire-button" title="in 30 minutes" value="2019-12-30T16:09:25+05:30">
562
+ in 30 minutes
563
+ </button>
564
+ </li>
565
+ <li>
566
+ <button type="button" class="btn-link dropdown-item ws-normal js-user-status-expire-button" title="in 1 hour" value="2019-12-30T16:39:25+05:30">
567
+ in 1 hour
568
+ </button>
569
+ </li>
570
+ <li>
571
+ <button type="button" class="btn-link dropdown-item ws-normal js-user-status-expire-button" title="in 4 hours" value="2019-12-30T19:39:25+05:30">
572
+ in 4 hours
573
+ </button>
574
+ </li>
575
+ <li>
576
+ <button type="button" class="btn-link dropdown-item ws-normal js-user-status-expire-button" title="today" value="2019-12-30T23:59:59+05:30">
577
+ today
578
+ </button>
579
+ </li>
580
+ <li>
581
+ <button type="button" class="btn-link dropdown-item ws-normal js-user-status-expire-button" title="this week" value="2020-01-05T23:59:59+05:30">
582
+ this week
583
+ </button>
584
+ </li>
585
+ </ul>
586
+ </details>
587
+ <input class="js-user-status-expiration-date-input" type="hidden" name="expires_at" value="">
588
+ </div>
589
+
590
+ <include-fragment class="js-user-status-org-picker" data-url="/users/status/organizations"></include-fragment>
591
+ </div>
592
+ <div class="d-flex flex-items-center flex-justify-between p-3 border-top">
593
+ <button type="submit" class="width-full btn btn-primary mr-2 js-user-status-submit">
594
+ Set status
595
+ </button>
596
+ <button type="button" class="width-full js-clear-user-status-button btn ml-2 js-user-status-exists">
597
+ Clear status
598
+ </button>
599
+ </div>
600
+ </form> </details-dialog>
601
+ </details>
602
+ </div>
603
+
604
+ </div>
605
+ <div role="none" class="dropdown-divider"></div>
606
+
607
+
608
+ <a role="menuitem" class="dropdown-item" href="/ad1tyawagh" data-ga-click="Header, go to profile, text:your profile">Your profile</a>
609
+
610
+ <a role="menuitem" class="dropdown-item" href="/ad1tyawagh?tab=repositories" data-ga-click="Header, go to repositories, text:your repositories">Your repositories</a>
611
+
612
+ <a role="menuitem" class="dropdown-item" href="/ad1tyawagh?tab=projects" data-ga-click="Header, go to projects, text:your projects">Your projects</a>
613
+
614
+ <a role="menuitem" class="dropdown-item" href="/ad1tyawagh?tab=stars" data-ga-click="Header, go to starred repos, text:your stars">Your stars</a>
615
+ <a role="menuitem" class="dropdown-item" href="https://gist.github.com/mine" data-ga-click="Header, your gists, text:your gists">Your gists</a>
616
+
617
+
618
+
619
+
620
+
621
+ <div role="none" class="dropdown-divider"></div>
622
+
623
+ <div id="feature-enrollment-toggle" class="hide-sm hide-md feature-preview-details position-relative">
624
+ <button
625
+ type="button"
626
+ class="dropdown-item btn-link"
627
+ role="menuitem"
628
+ data-feature-preview-trigger-url="/users/ad1tyawagh/feature_previews"
629
+ data-feature-preview-close-details="{&quot;event_type&quot;:&quot;feature_preview.clicks.close_modal&quot;,&quot;payload&quot;:{&quot;client_id&quot;:&quot;1038165182.1537261186&quot;,&quot;originating_request_id&quot;:&quot;DB25:1DC7:1EA81C5:2CA73EF:5E09CCA9&quot;,&quot;originating_url&quot;:&quot;https://github.com/connec/yaml-js/blob/master/yaml.min.js&quot;,&quot;referrer&quot;:&quot;https://github.com/connec/yaml-js&quot;,&quot;user_id&quot;:25822972}}"
630
+ data-feature-preview-close-hmac="092334407b60160624b1c2f2a60a26af1dd9a239fbfb874312f4475fe89f0569"
631
+ data-hydro-click="{&quot;event_type&quot;:&quot;feature_preview.clicks.open_modal&quot;,&quot;payload&quot;:{&quot;link_location&quot;:&quot;user_dropdown&quot;,&quot;client_id&quot;:&quot;1038165182.1537261186&quot;,&quot;originating_request_id&quot;:&quot;DB25:1DC7:1EA81C5:2CA73EF:5E09CCA9&quot;,&quot;originating_url&quot;:&quot;https://github.com/connec/yaml-js/blob/master/yaml.min.js&quot;,&quot;referrer&quot;:&quot;https://github.com/connec/yaml-js&quot;,&quot;user_id&quot;:25822972}}"
632
+ data-hydro-click-hmac="7a000da870c1a0df452f90c63abdb44a53b22c34287e5ee55f7dd946d27e5821"
633
+ >
634
+ Feature preview
635
+ </button>
636
+ <span class="feature-preview-indicator js-feature-preview-indicator" hidden></span>
637
+ </div>
638
+
639
+ <a role="menuitem" class="dropdown-item" href="https://help.github.com" data-ga-click="Header, go to help, text:help">Help</a>
640
+ <a role="menuitem" class="dropdown-item" href="/settings/profile" data-ga-click="Header, go to settings, icon:settings">Settings</a>
641
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form class="logout-form" action="/logout" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><input type="hidden" name="authenticity_token" value="bRgvHOCA+LxHPKGMvdARO5YhcP++IaV4NdP2EmQVGTd5/zAIasEgaDdievbzFr2LwEPnaf32raLlH3cyh4azgg==" />
642
+
643
+ <button type="submit" class="dropdown-item dropdown-signout" data-ga-click="Header, sign out, icon:logout" role="menuitem">
644
+ Sign out
645
+ </button>
646
+ <input type="text" name="required_field_8e17" hidden="hidden" class="form-control" />
647
+ <input type="hidden" name="timestamp" value="1577700565783" class="form-control" />
648
+ <input type="hidden" name="timestamp_secret" value="092301522820ca0f210ba93445e30db6d4f8ef0d5a701d7e15c085d3e2e65b1f" class="form-control" />
649
+
650
+ </form> </details-menu>
651
+ </details>
652
+
653
+ </div>
654
+
655
+ </header>
656
+
657
+
658
+
659
+ </div>
660
+
661
+ <div id="start-of-content" class="show-on-focus"></div>
662
+
663
+
664
+ <div id="js-flash-container">
665
+
666
+ </div>
667
+
668
+
669
+
670
+ <div class="application-main " data-commit-hovercards-enabled>
671
+ <div itemscope itemtype="http://schema.org/SoftwareSourceCode" class="">
672
+ <main >
673
+
674
+
675
+
676
+
677
+
678
+
679
+
680
+
681
+
682
+
683
+
684
+
685
+
686
+
687
+ <div class=" pagehead repohead readability-menu experiment-repo-nav pt-0 pt-lg-4 ">
688
+ <div class="repohead-details-container clearfix container-lg p-responsive d-none d-lg-block">
689
+
690
+ <ul class="pagehead-actions">
691
+
692
+
693
+
694
+ <li >
695
+
696
+ <details class="dropdown details-reset details-overlay d-inline-block float-left"
697
+ data-deferred-details-content-url="/connec/yaml-js/used_by_contents"
698
+ >
699
+ <summary class="btn btn-sm btn-with-count" data-menu-button>
700
+ <svg class="octicon octicon-package v-align-text-bottom" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1 4.27v7.47c0 .45.3.84.75.97l6.5 1.73c.16.05.34.05.5 0l6.5-1.73c.45-.13.75-.52.75-.97V4.27c0-.45-.3-.84-.75-.97l-6.5-1.74a1.4 1.4 0 00-.5 0L1.75 3.3c-.45.13-.75.52-.75.97zm7 9.09l-6-1.59V5l6 1.61v6.75zM2 4l2.5-.67L11 5.06l-2.5.67L2 4zm13 7.77l-6 1.59V6.61l2-.55V8.5l2-.53V5.53L15 5v6.77zm-2-7.24L6.5 2.8l2-.53L15 4l-2 .53z"/></svg>
701
+ Used by
702
+ <div class="dropdown-caret"></div>
703
+ </summary>
704
+ <include-fragment accept="text/html; fragment">
705
+ <div class="dropdown-menu dropdown-menu-s p-3 text-center" style="width:360px;">
706
+ <img width="32" height="32" alt="Loading..." class="my-0" src="https://github.githubassets.com/images/spinners/octocat-spinner-64.gif" />
707
+ <p class="pt-1 m-0 f5 text-gray-light">
708
+ Loading dependents...
709
+ </p>
710
+ </div>
711
+ </include-fragment>
712
+ </details>
713
+ <a class="social-count"
714
+ href="/connec/yaml-js/network/dependents?package_id=UGFja2FnZS0xNTExNTcyMQ%3D%3D"
715
+ aria-label="5840 repositories depend on this package"
716
+ >
717
+ 5.8k
718
+ </a>
719
+
720
+ </li>
721
+
722
+ <li>
723
+
724
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form data-remote="true" class="clearfix js-social-form js-social-container" action="/notifications/subscribe" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><input type="hidden" name="authenticity_token" value="KfVOcJHX71J4ecVVobCfYNOY/IryRvI4o74osb6srUOvOysYjrchElKD4Pd/L95QsF5iEovOphH289xRXv9rCQ==" /> <input type="hidden" name="repository_id" value="2678133">
725
+
726
+ <details class="details-reset details-overlay select-menu float-left">
727
+ <summary class="select-menu-button float-left btn btn-sm btn-with-count" data-hydro-click="{&quot;event_type&quot;:&quot;repository.click&quot;,&quot;payload&quot;:{&quot;target&quot;:&quot;WATCH_BUTTON&quot;,&quot;repository_id&quot;:2678133,&quot;client_id&quot;:&quot;1038165182.1537261186&quot;,&quot;originating_request_id&quot;:&quot;DB25:1DC7:1EA81C5:2CA73EF:5E09CCA9&quot;,&quot;originating_url&quot;:&quot;https://github.com/connec/yaml-js/blob/master/yaml.min.js&quot;,&quot;referrer&quot;:&quot;https://github.com/connec/yaml-js&quot;,&quot;user_id&quot;:25822972}}" data-hydro-click-hmac="c927acf391196d1e24bcf67463ed5b2b1f19f30eed309c51fd6d93c5d09b06ad" data-ga-click="Repository, click Watch settings, action:blob#show"> <span data-menu-button>
728
+ <svg class="octicon octicon-eye v-align-text-bottom" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"/></svg>
729
+ Watch
730
+ </span>
731
+ </summary> <details-menu
732
+ class="select-menu-modal position-absolute mt-5"
733
+ style="z-index: 99;">
734
+ <div class="select-menu-header">
735
+ <span class="select-menu-title">Notifications</span>
736
+ </div>
737
+ <div class="select-menu-list">
738
+ <button type="submit" name="do" value="included" class="select-menu-item width-full" aria-checked="true" role="menuitemradio">
739
+ <svg class="octicon octicon-check select-menu-item-icon" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5L12 5z"/></svg>
740
+ <div class="select-menu-item-text">
741
+ <span class="select-menu-item-heading">Not watching</span>
742
+ <span class="description">Be notified only when participating or @mentioned.</span>
743
+ <span class="hidden-select-button-text" data-menu-button-contents>
744
+ <svg class="octicon octicon-eye v-align-text-bottom" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"/></svg>
745
+ Watch
746
+ </span>
747
+ </div>
748
+ </button>
749
+
750
+ <button type="submit" name="do" value="release_only" class="select-menu-item width-full" aria-checked="false" role="menuitemradio">
751
+ <svg class="octicon octicon-check select-menu-item-icon" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5L12 5z"/></svg>
752
+ <div class="select-menu-item-text">
753
+ <span class="select-menu-item-heading">Releases only</span>
754
+ <span class="description">Be notified of new releases, and when participating or @mentioned.</span>
755
+ <span class="hidden-select-button-text" data-menu-button-contents>
756
+ <svg class="octicon octicon-eye v-align-text-bottom" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"/></svg>
757
+ Unwatch releases
758
+ </span>
759
+ </div>
760
+ </button>
761
+
762
+ <button type="submit" name="do" value="subscribed" class="select-menu-item width-full" aria-checked="false" role="menuitemradio">
763
+ <svg class="octicon octicon-check select-menu-item-icon" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5L12 5z"/></svg>
764
+ <div class="select-menu-item-text">
765
+ <span class="select-menu-item-heading">Watching</span>
766
+ <span class="description">Be notified of all conversations.</span>
767
+ <span class="hidden-select-button-text" data-menu-button-contents>
768
+ <svg class="octicon octicon-eye v-align-text-bottom" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"/></svg>
769
+ Unwatch
770
+ </span>
771
+ </div>
772
+ </button>
773
+
774
+ <button type="submit" name="do" value="ignore" class="select-menu-item width-full" aria-checked="false" role="menuitemradio">
775
+ <svg class="octicon octicon-check select-menu-item-icon" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5L12 5z"/></svg>
776
+ <div class="select-menu-item-text">
777
+ <span class="select-menu-item-heading">Ignoring</span>
778
+ <span class="description">Never be notified.</span>
779
+ <span class="hidden-select-button-text" data-menu-button-contents>
780
+ <svg class="octicon octicon-mute v-align-text-bottom" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8 2.81v10.38c0 .67-.81 1-1.28.53L3 10H1c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h2l3.72-3.72C7.19 1.81 8 2.14 8 2.81zm7.53 3.22l-1.06-1.06-1.97 1.97-1.97-1.97-1.06 1.06L11.44 8 9.47 9.97l1.06 1.06 1.97-1.97 1.97 1.97 1.06-1.06L13.56 8l1.97-1.97z"/></svg>
781
+ Stop ignoring
782
+ </span>
783
+ </div>
784
+ </button>
785
+ </div>
786
+ </details-menu>
787
+ </details>
788
+ <a class="social-count js-social-count"
789
+ href="/connec/yaml-js/watchers"
790
+ aria-label="6 users are watching this repository">
791
+ 6
792
+ </a>
793
+ </form>
794
+ </li>
795
+
796
+ <li>
797
+ <div class="js-toggler-container js-social-container starring-container ">
798
+ <form class="starred js-social-form" action="/connec/yaml-js/unstar" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><input type="hidden" name="authenticity_token" value="j4iBAsJCg1EUkm5D0TLlFezmZJT1W5ncTgfAL9hTaDribxN7cgrtVVH5fR9GjdEGSu5ub5p8THLlR9n8N8fg+w==" />
799
+ <input type="hidden" name="context" value="repository"></input>
800
+ <button type="submit" class="btn btn-sm btn-with-count js-toggler-target" aria-label="Unstar this repository" title="Unstar connec/yaml-js" data-hydro-click="{&quot;event_type&quot;:&quot;repository.click&quot;,&quot;payload&quot;:{&quot;target&quot;:&quot;UNSTAR_BUTTON&quot;,&quot;repository_id&quot;:2678133,&quot;client_id&quot;:&quot;1038165182.1537261186&quot;,&quot;originating_request_id&quot;:&quot;DB25:1DC7:1EA81C5:2CA73EF:5E09CCA9&quot;,&quot;originating_url&quot;:&quot;https://github.com/connec/yaml-js/blob/master/yaml.min.js&quot;,&quot;referrer&quot;:&quot;https://github.com/connec/yaml-js&quot;,&quot;user_id&quot;:25822972}}" data-hydro-click-hmac="568eb2156eefa6c1cfc033a51af621246a2b663a3318b44ad1f08a24100ed312" data-ga-click="Repository, click unstar button, action:blob#show; text:Unstar"> <svg aria-label="star" height="16" class="octicon octicon-star v-align-text-bottom" viewBox="0 0 14 16" version="1.1" width="14" role="img"><path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"/></svg>
801
+
802
+ Unstar
803
+ </button> <a class="social-count js-social-count" href="/connec/yaml-js/stargazers"
804
+ aria-label="63 users starred this repository">
805
+ 63
806
+ </a>
807
+ </form>
808
+ <form class="unstarred js-social-form" action="/connec/yaml-js/star" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><input type="hidden" name="authenticity_token" value="13FdXs9+um9oaevgu+OhCKP4amv9FQ+aQEB1aCSpnjbitSQTIyUyApuILdMBP2Y6VIaYe0u2LeDR4MiqK8zTwQ==" />
809
+ <input type="hidden" name="context" value="repository"></input>
810
+ <button type="submit" class="btn btn-sm btn-with-count js-toggler-target" aria-label="Unstar this repository" title="Star connec/yaml-js" data-hydro-click="{&quot;event_type&quot;:&quot;repository.click&quot;,&quot;payload&quot;:{&quot;target&quot;:&quot;STAR_BUTTON&quot;,&quot;repository_id&quot;:2678133,&quot;client_id&quot;:&quot;1038165182.1537261186&quot;,&quot;originating_request_id&quot;:&quot;DB25:1DC7:1EA81C5:2CA73EF:5E09CCA9&quot;,&quot;originating_url&quot;:&quot;https://github.com/connec/yaml-js/blob/master/yaml.min.js&quot;,&quot;referrer&quot;:&quot;https://github.com/connec/yaml-js&quot;,&quot;user_id&quot;:25822972}}" data-hydro-click-hmac="549ec23bfb2f9b259be03230c114f276080f3c0fc561f9dd669d7a926679dd65" data-ga-click="Repository, click star button, action:blob#show; text:Star"> <svg aria-label="star" height="16" class="octicon octicon-star v-align-text-bottom" viewBox="0 0 14 16" version="1.1" width="14" role="img"><path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"/></svg>
811
+
812
+ Star
813
+ </button> <a class="social-count js-social-count" href="/connec/yaml-js/stargazers"
814
+ aria-label="63 users starred this repository">
815
+ 63
816
+ </a>
817
+ </form> </div>
818
+
819
+ </li>
820
+
821
+ <li>
822
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form class="btn-with-count" action="/connec/yaml-js/fork" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><input type="hidden" name="authenticity_token" value="n5kl7mFHrn62I8dXFlfp68DBiHE5LrKSFvEHgh6i2IkwJnt0aN7ppAZxJrGwsAg6W6OJEecJzyxcoW6YUGG7ww==" />
823
+ <button class="btn btn-sm btn-with-count" data-hydro-click="{&quot;event_type&quot;:&quot;repository.click&quot;,&quot;payload&quot;:{&quot;target&quot;:&quot;FORK_BUTTON&quot;,&quot;repository_id&quot;:2678133,&quot;client_id&quot;:&quot;1038165182.1537261186&quot;,&quot;originating_request_id&quot;:&quot;DB25:1DC7:1EA81C5:2CA73EF:5E09CCA9&quot;,&quot;originating_url&quot;:&quot;https://github.com/connec/yaml-js/blob/master/yaml.min.js&quot;,&quot;referrer&quot;:&quot;https://github.com/connec/yaml-js&quot;,&quot;user_id&quot;:25822972}}" data-hydro-click-hmac="7388dc315c2020ad708d4fb18ae911a657a9b31eb8b2a9b25e415a1a2b1dd0a4" data-ga-click="Repository, show fork modal, action:blob#show; text:Fork" type="submit" title="Fork your own copy of connec/yaml-js to your account" aria-label="Fork your own copy of connec/yaml-js to your account"> <svg class="octicon octicon-repo-forked v-align-text-bottom" viewBox="0 0 10 16" version="1.1" width="10" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8 1a1.993 1.993 0 00-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 002 1a1.993 1.993 0 00-1 3.72V6.5l3 3v1.78A1.993 1.993 0 005 15a1.993 1.993 0 001-3.72V9.5l3-3V4.72A1.993 1.993 0 008 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"/></svg>
824
+ Fork
825
+ </button></form>
826
+ <a href="/connec/yaml-js/network/members" class="social-count"
827
+ aria-label="19 users forked this repository">
828
+ 19
829
+ </a>
830
+ </li>
831
+ </ul>
832
+
833
+ <h1 class="public ">
834
+ <svg class="octicon octicon-repo" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"/></svg>
835
+ <span class="author" itemprop="author"><a class="url fn" rel="author" data-hovercard-type="user" data-hovercard-url="/users/connec/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="/connec">connec</a></span><!--
836
+ --><span class="path-divider">/</span><!--
837
+ --><strong itemprop="name"><a data-pjax="#js-repo-pjax-container" href="/connec/yaml-js">yaml-js</a></strong>
838
+
839
+
840
+ </h1>
841
+
842
+ </div>
843
+
844
+ <nav class="hx_reponav reponav js-repo-nav js-sidenav-container-pjax container-lg p-responsive d-none d-lg-block"
845
+ itemscope
846
+ itemtype="http://schema.org/BreadcrumbList"
847
+ aria-label="Repository"
848
+ data-pjax="#js-repo-pjax-container">
849
+
850
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
851
+ <a class="js-selected-navigation-item selected reponav-item" itemprop="url" data-hotkey="g c" aria-current="page" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches repo_packages /connec/yaml-js" href="/connec/yaml-js">
852
+ <div class="d-inline"><svg class="octicon octicon-code" viewBox="0 0 14 16" version="1.1" width="14" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M9.5 3L8 4.5 11.5 8 8 11.5 9.5 13 14 8 9.5 3zm-5 0L0 8l4.5 5L6 11.5 2.5 8 6 4.5 4.5 3z"/></svg></div>
853
+ <span itemprop="name">Code</span>
854
+ <meta itemprop="position" content="1">
855
+ </a> </span>
856
+
857
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
858
+ <a itemprop="url" data-hotkey="g i" class="js-selected-navigation-item reponav-item" data-selected-links="repo_issues repo_labels repo_milestones /connec/yaml-js/issues" href="/connec/yaml-js/issues">
859
+ <div class="d-inline"><svg class="octicon octicon-issue-opened" viewBox="0 0 14 16" version="1.1" width="14" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 011.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm1 3H6v5h2V4zm0 6H6v2h2v-2z"/></svg></div>
860
+ <span itemprop="name">Issues</span>
861
+ <span class="Counter">12</span>
862
+ <meta itemprop="position" content="2">
863
+ </a> </span>
864
+
865
+
866
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
867
+ <a data-hotkey="g p" data-skip-pjax="true" itemprop="url" class="js-selected-navigation-item reponav-item" data-selected-links="repo_pulls checks /connec/yaml-js/pulls" href="/connec/yaml-js/pulls">
868
+ <div class="d-inline"><svg class="octicon octicon-git-pull-request" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M11 11.28V5c-.03-.78-.34-1.47-.94-2.06C9.46 2.35 8.78 2.03 8 2H7V0L4 3l3 3V4h1c.27.02.48.11.69.31.21.2.3.42.31.69v6.28A1.993 1.993 0 0010 15a1.993 1.993 0 001-3.72zm-1 2.92c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zM4 3c0-1.11-.89-2-2-2a1.993 1.993 0 00-1 3.72v6.56A1.993 1.993 0 002 15a1.993 1.993 0 001-3.72V4.72c.59-.34 1-.98 1-1.72zm-.8 10c0 .66-.55 1.2-1.2 1.2-.65 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"/></svg></div>
869
+ <span itemprop="name">Pull requests</span>
870
+ <span class="Counter">1</span>
871
+ <meta itemprop="position" content="4">
872
+ </a> </span>
873
+
874
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement" class="position-relative float-left">
875
+ <a data-hotkey="g w" data-skip-pjax="true" class="js-selected-navigation-item reponav-item" data-selected-links="repo_actions /connec/yaml-js/actions" href="/connec/yaml-js/actions">
876
+ <div class="d-inline"><svg class="octicon octicon-play" viewBox="0 0 14 16" version="1.1" width="14" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M14 8A7 7 0 110 8a7 7 0 0114 0zm-8.223 3.482l4.599-3.066a.5.5 0 000-.832L5.777 4.518A.5.5 0 005 4.934v6.132a.5.5 0 00.777.416z"/></svg></div>
877
+ Actions
878
+ </a>
879
+ </span>
880
+
881
+ <a data-hotkey="g b" class="js-selected-navigation-item reponav-item" data-selected-links="repo_projects new_repo_project repo_project /connec/yaml-js/projects" href="/connec/yaml-js/projects">
882
+ <div class="d-inline"><svg class="octicon octicon-project" viewBox="0 0 15 16" version="1.1" width="15" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10 12h3V2h-3v10zm-4-2h3V2H6v8zm-4 4h3V2H2v12zm-1 1h13V1H1v14zM14 0H1a1 1 0 00-1 1v14a1 1 0 001 1h13a1 1 0 001-1V1a1 1 0 00-1-1z"/></svg></div>
883
+ Projects
884
+ <span class="Counter" >0</span>
885
+ </a>
886
+
887
+ <a class="js-selected-navigation-item reponav-item" data-hotkey="g w" data-selected-links="repo_wiki /connec/yaml-js/wiki" href="/connec/yaml-js/wiki">
888
+ <div class="d-inline"><svg class="octicon octicon-book" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3 5h4v1H3V5zm0 3h4V7H3v1zm0 2h4V9H3v1zm11-5h-4v1h4V5zm0 2h-4v1h4V7zm0 2h-4v1h4V9zm2-6v9c0 .55-.45 1-1 1H9.5l-1 1-1-1H2c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h5.5l1 1 1-1H15c.55 0 1 .45 1 1zm-8 .5L7.5 3H2v9h6V3.5zm7-.5H9.5l-.5.5V12h6V3z"/></svg></div>
889
+ Wiki
890
+ </a>
891
+ <a data-skip-pjax="true" class="js-selected-navigation-item reponav-item" data-selected-links="security alerts policy code_scanning /connec/yaml-js/security/advisories" href="/connec/yaml-js/security/advisories">
892
+ <div class="d-inline"><svg class="octicon octicon-shield" viewBox="0 0 14 16" version="1.1" width="14" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M0 2l7-2 7 2v6.02C14 12.69 8.69 16 7 16c-1.69 0-7-3.31-7-7.98V2zm1 .75L7 1l6 1.75v5.268C13 12.104 8.449 15 7 15c-1.449 0-6-2.896-6-6.982V2.75zm1 .75L7 2v12c-1.207 0-5-2.482-5-5.985V3.5z"/></svg></div>
893
+ Security
894
+ </a>
895
+ <a class="js-selected-navigation-item reponav-item" data-selected-links="repo_graphs repo_contributors dependency_graph pulse people /connec/yaml-js/pulse" href="/connec/yaml-js/pulse">
896
+ <div class="d-inline"><svg class="octicon octicon-graph" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M16 14v1H0V0h1v14h15zM5 13H3V8h2v5zm4 0H7V3h2v10zm4 0h-2V6h2v7z"/></svg></div>
897
+ Insights
898
+ </a>
899
+
900
+ </nav>
901
+
902
+ <div class="reponav-wrapper reponav-small d-lg-none">
903
+ <nav class="reponav js-reponav text-center no-wrap"
904
+ itemscope
905
+ itemtype="http://schema.org/BreadcrumbList">
906
+
907
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
908
+ <a class="js-selected-navigation-item selected reponav-item" itemprop="url" aria-current="page" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches repo_packages /connec/yaml-js" href="/connec/yaml-js">
909
+ <span itemprop="name">Code</span>
910
+ <meta itemprop="position" content="1">
911
+ </a> </span>
912
+
913
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
914
+ <a itemprop="url" class="js-selected-navigation-item reponav-item" data-selected-links="repo_issues repo_labels repo_milestones /connec/yaml-js/issues" href="/connec/yaml-js/issues">
915
+ <span itemprop="name">Issues</span>
916
+ <span class="Counter">12</span>
917
+ <meta itemprop="position" content="2">
918
+ </a> </span>
919
+
920
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
921
+ <a itemprop="url" class="js-selected-navigation-item reponav-item" data-selected-links="repo_pulls checks /connec/yaml-js/pulls" href="/connec/yaml-js/pulls">
922
+ <span itemprop="name">Pull requests</span>
923
+ <span class="Counter">1</span>
924
+ <meta itemprop="position" content="3">
925
+ </a> </span>
926
+
927
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
928
+ <a itemprop="url" class="js-selected-navigation-item reponav-item" data-selected-links="repo_projects new_repo_project repo_project /connec/yaml-js/projects" href="/connec/yaml-js/projects">
929
+ <span itemprop="name">Projects</span>
930
+ <span class="Counter">0</span>
931
+ <meta itemprop="position" content="4">
932
+ </a> </span>
933
+
934
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
935
+ <a itemprop="url" class="js-selected-navigation-item reponav-item" data-selected-links="repo_wiki /connec/yaml-js/wiki" href="/connec/yaml-js/wiki">
936
+ <span itemprop="name">Wiki</span>
937
+ <meta itemprop="position" content="5">
938
+ </a> </span>
939
+
940
+ <a itemprop="url" class="js-selected-navigation-item reponav-item" data-selected-links="security alerts policy code_scanning /connec/yaml-js/security/advisories" href="/connec/yaml-js/security/advisories">
941
+ <span itemprop="name">Security</span>
942
+ <meta itemprop="position" content="6">
943
+ </a>
944
+ <a class="js-selected-navigation-item reponav-item" data-selected-links="pulse /connec/yaml-js/pulse" href="/connec/yaml-js/pulse">
945
+ Pulse
946
+ </a>
947
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
948
+ <a itemprop="url" class="js-selected-navigation-item reponav-item" data-selected-links="community /connec/yaml-js/community" href="/connec/yaml-js/community">
949
+ Community
950
+ </a> </span>
951
+
952
+ </nav>
953
+ </div>
954
+
955
+
956
+ </div>
957
+ <div class="container-lg clearfix new-discussion-timeline experiment-repo-nav p-responsive">
958
+ <div class="repository-content ">
959
+
960
+
961
+
962
+
963
+
964
+
965
+
966
+
967
+ <a class="d-none js-permalink-shortcut" data-hotkey="y" href="/connec/yaml-js/blob/579e6f6cc513ded1740959fc57aac3dc90c5f788/yaml.min.js">Permalink</a>
968
+
969
+ <!-- blob contrib key: blob_contributors:v21:25c5b6df19181fff0ec38f5369e61491 -->
970
+
971
+
972
+ <div class="d-flex flex-items-start flex-shrink-0 pb-3 flex-column flex-md-row">
973
+ <span class="d-flex flex-justify-between width-full width-md-auto">
974
+
975
+ <details class="details-reset details-overlay select-menu branch-select-menu hx_rsm" id="branch-select-menu">
976
+ <summary class="btn btn-sm select-menu-button css-truncate"
977
+ data-hotkey="w"
978
+ title="Switch branches or tags">
979
+ <i>Branch:</i>
980
+ <span class="css-truncate-target" data-menu-button>master</span>
981
+ </summary>
982
+
983
+ <details-menu class="select-menu-modal hx_rsm-modal position-absolute" style="z-index: 99;" src="/connec/yaml-js/refs/master/yaml.min.js?source_action=show&amp;source_controller=blob" preload>
984
+ <include-fragment class="select-menu-loading-overlay anim-pulse">
985
+ <svg height="32" class="octicon octicon-octoface" viewBox="0 0 16 16" version="1.1" width="32" aria-hidden="true"><path fill-rule="evenodd" d="M14.7 5.34c.13-.32.55-1.59-.13-3.31 0 0-1.05-.33-3.44 1.3-1-.28-2.07-.32-3.13-.32s-2.13.04-3.13.32c-2.39-1.64-3.44-1.3-3.44-1.3-.68 1.72-.26 2.99-.13 3.31C.49 6.21 0 7.33 0 8.69 0 13.84 3.33 15 7.98 15S16 13.84 16 8.69c0-1.36-.49-2.48-1.3-3.35zM8 14.02c-3.3 0-5.98-.15-5.98-3.35 0-.76.38-1.48 1.02-2.07 1.07-.98 2.9-.46 4.96-.46 2.07 0 3.88-.52 4.96.46.65.59 1.02 1.3 1.02 2.07 0 3.19-2.68 3.35-5.98 3.35zM5.49 9.01c-.66 0-1.2.8-1.2 1.78s.54 1.79 1.2 1.79c.66 0 1.2-.8 1.2-1.79s-.54-1.78-1.2-1.78zm5.02 0c-.66 0-1.2.79-1.2 1.78s.54 1.79 1.2 1.79c.66 0 1.2-.8 1.2-1.79s-.53-1.78-1.2-1.78z"/></svg>
986
+ </include-fragment>
987
+ </details-menu>
988
+ </details>
989
+
990
+ <div class="BtnGroup flex-shrink-0 d-md-none">
991
+ <a href="/connec/yaml-js/find/master"
992
+ class="js-pjax-capture-input btn btn-sm BtnGroup-item"
993
+ data-pjax
994
+ data-hotkey="t">
995
+ Find file
996
+ </a>
997
+ <clipboard-copy value="yaml.min.js" class="btn btn-sm BtnGroup-item">
998
+ Copy path
999
+ </clipboard-copy>
1000
+ </div>
1001
+ </span>
1002
+ <h2 id="blob-path" class="breadcrumb flex-auto min-width-0 text-normal flex-md-self-center ml-md-2 mr-md-3 my-2 my-md-0">
1003
+ <span class="js-repo-root text-bold"><span class="js-path-segment"><a data-pjax="true" href="/connec/yaml-js"><span>yaml-js</span></a></span></span><span class="separator">/</span><strong class="final-path">yaml.min.js</strong>
1004
+ <span class="separator">/</span>
1005
+
1006
+ <details class="details-reset details-overlay select-menu d-inline">
1007
+ <summary class="btn-link link-gray select-menu-button css-truncate" data-hotkey="r" data-hydro-click="{&quot;event_type&quot;:&quot;code_navigation.click_on_blob_definitions&quot;,&quot;payload&quot;:{&quot;action&quot;:&quot;click_on_blob_definitions&quot;,&quot;repository_id&quot;:2678133,&quot;ref&quot;:&quot;master&quot;,&quot;language&quot;:&quot;JavaScript&quot;,&quot;client_id&quot;:&quot;1038165182.1537261186&quot;,&quot;originating_request_id&quot;:&quot;DB25:1DC7:1EA81C5:2CA73EF:5E09CCA9&quot;,&quot;originating_url&quot;:&quot;https://github.com/connec/yaml-js/blob/master/yaml.min.js&quot;,&quot;referrer&quot;:&quot;https://github.com/connec/yaml-js&quot;,&quot;user_id&quot;:25822972}}" data-hydro-click-hmac="efd9451740c5d69b8c49757476657e6cad09cb780e5db03ec7419da85046fdf0">
1008
+ <span data-menu-button>Jump to</span>
1009
+ </summary>
1010
+ <details-menu class="select-menu-modal position-absolute" style="z-index: 99;">
1011
+ <div class="select-menu-header">
1012
+ <span class="select-menu-title">Code definitions</span>
1013
+ </div>
1014
+ <div class="select-menu-filters">
1015
+ <div class="select-menu-text-filter">
1016
+ <input
1017
+ type="text"
1018
+ id="code-def-filter-field"
1019
+ class="form-control js-filterable-field"
1020
+ placeholder="Filter definitions"
1021
+ aria-label="Filter definitions"
1022
+ autofocus
1023
+ autocomplete="off">
1024
+ </div>
1025
+ </div>
1026
+ <div class="select-menu-list lh-default" data-filterable-for="code-def-filter-field" data-filterable-type="substring">
1027
+
1028
+ </div>
1029
+ </details-menu>
1030
+ </details>
1031
+
1032
+ </h2>
1033
+
1034
+ <div class="BtnGroup flex-shrink-0 d-none d-md-inline-block">
1035
+ <a href="/connec/yaml-js/find/master"
1036
+ class="js-pjax-capture-input btn btn-sm BtnGroup-item"
1037
+ data-pjax
1038
+ data-hotkey="t">
1039
+ Find file
1040
+ </a>
1041
+ <clipboard-copy value="yaml.min.js" class="btn btn-sm BtnGroup-item">
1042
+ Copy path
1043
+ </clipboard-copy>
1044
+ </div>
1045
+ </div>
1046
+
1047
+
1048
+
1049
+
1050
+
1051
+ <include-fragment src="/connec/yaml-js/contributors/master/yaml.min.js" class="Box Box--condensed commit-loader">
1052
+ <div class="Box-body bg-blue-light f6">
1053
+ Fetching contributors&hellip;
1054
+ </div>
1055
+
1056
+ <div class="Box-body d-flex flex-items-center" >
1057
+ <img alt="" class="loader-loading mr-2" src="https://github.githubassets.com/images/spinners/octocat-spinner-32-EAF2F5.gif" width="16" height="16" />
1058
+ <span class="text-red h6 loader-error">Cannot retrieve contributors at this time</span>
1059
+ </div>
1060
+ </include-fragment>
1061
+
1062
+
1063
+
1064
+
1065
+ <div class="Box mt-3 position-relative">
1066
+
1067
+ <div class="Box-header py-2 d-flex flex-column flex-shrink-0 flex-md-row flex-md-items-center">
1068
+ <div class="text-mono f6 flex-auto pr-3 flex-order-2 flex-md-order-1 mt-2 mt-md-0">
1069
+
1070
+ 1 lines (1 sloc)
1071
+ <span class="file-info-divider"></span>
1072
+ 112 KB
1073
+ </div>
1074
+
1075
+ <div class="d-flex py-1 py-md-0 flex-auto flex-order-1 flex-md-order-2 flex-sm-grow-0 flex-justify-between">
1076
+
1077
+ <div class="BtnGroup">
1078
+ <a id="raw-url" class="btn btn-sm BtnGroup-item" href="/connec/yaml-js/raw/master/yaml.min.js">Raw</a>
1079
+ <a class="btn btn-sm js-update-url-with-hash BtnGroup-item" data-hotkey="b" href="/connec/yaml-js/blame/master/yaml.min.js">Blame</a>
1080
+ <a rel="nofollow" class="btn btn-sm BtnGroup-item" href="/connec/yaml-js/commits/master/yaml.min.js">History</a>
1081
+ </div>
1082
+
1083
+
1084
+ <div>
1085
+ <a class="btn-octicon tooltipped tooltipped-nw hide-sm"
1086
+ href="x-github-client://openRepo/https://github.com/connec/yaml-js?branch=master&amp;filepath=yaml.min.js"
1087
+ aria-label="Open this file in GitHub Desktop"
1088
+ data-ga-click="Repository, open with desktop, type:windows">
1089
+ <svg class="octicon octicon-device-desktop" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M15 2H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5.34c-.25.61-.86 1.39-2.34 2h8c-1.48-.61-2.09-1.39-2.34-2H15c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 9H1V3h14v8z"/></svg>
1090
+ </a>
1091
+
1092
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form class="inline-form js-update-url-with-hash" action="/connec/yaml-js/edit/master/yaml.min.js" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><input type="hidden" name="authenticity_token" value="Uvxlem44rwLfpypcq3miRLjyaJAGmTNhwYKX2Q+1xWDU++8AM1jPIStlKe5Y8/TbQ8z/8Nalp4HVZLYWE8HSQg==" />
1093
+ <button class="btn-octicon tooltipped tooltipped-nw" type="submit"
1094
+ aria-label="Fork this project and edit the file" data-hotkey="e" data-disable-with>
1095
+ <svg class="octicon octicon-pencil" viewBox="0 0 14 16" version="1.1" width="14" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M0 12v3h3l8-8-3-3-8 8zm3 2H1v-2h1v1h1v1zm10.3-9.3L12 6 9 3l1.3-1.3a.996.996 0 011.41 0l1.59 1.59c.39.39.39 1.02 0 1.41z"/></svg>
1096
+ </button>
1097
+ </form>
1098
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form class="inline-form" action="/connec/yaml-js/delete/master/yaml.min.js" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><input type="hidden" name="authenticity_token" value="G93wYAw8YfHRwiC7voMbavWjomo31GB5lUt4qv6AhAq22jlJ8VZl0VbDmYOIHpx5hpxV9VtP+pMXsiKeVTBkZw==" />
1099
+ <button class="btn-octicon btn-octicon-danger tooltipped tooltipped-nw" type="submit"
1100
+ aria-label="Fork this project and delete the file" data-disable-with>
1101
+ <svg class="octicon octicon-trashcan" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M11 2H9c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1H2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1v9c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 12H3V5h1v8h1V5h1v8h1V5h1v8h1V5h1v9zm1-10H2V3h9v1z"/></svg>
1102
+ </button>
1103
+ </form> </div>
1104
+ </div>
1105
+ </div>
1106
+
1107
+
1108
+
1109
+ <div class="f6 v-align-middle text-gray px-3 py-2 border-bottom bg-gray-light d-flex flex-justify-between">
1110
+ <div class="d-flex text-mono">
1111
+ <svg style="color: #28a745;" class="octicon octicon-primitive-dot mr-2" viewBox="0 0 8 16" version="1.1" width="8" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M0 8c0-2.2 1.8-4 4-4s4 1.8 4 4-1.8 4-4 4-4-1.8-4-4z"/></svg>
1112
+ <span>You're using code navigation to jump to definitions or references.</span>
1113
+ </div>
1114
+ <div>
1115
+ <a href="https://help.github.com/en/articles/navigating-code-on-github">Learn more</a>
1116
+ or
1117
+ <a href="mailto:code-nav@github.com">give us feedback</a>
1118
+ </div>
1119
+ </div>
1120
+
1121
+
1122
+
1123
+ <div itemprop="text" class="Box-body p-0 blob-wrapper data type-javascript ">
1124
+
1125
+ <table class="highlight tab-size js-file-line-container" data-tab-size="8">
1126
+ <tr>
1127
+ <td id="L1" class="blob-num js-line-number" data-line-number="1"></td>
1128
+ <td id="LC1" class="blob-code blob-code-inner js-file-line">(function(){var modules,require_from,register,error;if(void 0===global)var global=&quot;undefined&quot;==typeof window?this:window;modules={},require_from=function(parent,from){return function(name){return modules[from]&amp;&amp;modules[from][name]?(modules[from][name].parent=parent,modules[from][name].initialize&amp;&amp;modules[from][name].initialize(),modules[from][name].exports):error(name,from)}},error=function(name,from){var message=&quot;Warn: could not find module &quot;+name;console.log(message)},(register=function(names,directory,callback){var module={exports:{},initialize:function(){callback.call(module.exports,global,module,module.exports,require_from(module,directory),void 0),delete module.initialize},parent:null};for(var from in names){modules[from]=modules[from]||{};for(var j in names[from]){var name=names[from][j];modules[from][name]=module}}})({0:[&quot;./events&quot;]},0,function(global,module,exports,require,window){(function(){this.Event=class{constructor(start_mark1,end_mark1){this.start_mark=start_mark1,this.end_mark=end_mark1}},this.NodeEvent=class extends this.Event{constructor(anchor1,start_mark,end_mark){super(start_mark,end_mark),this.anchor=anchor1}},this.CollectionStartEvent=class extends this.NodeEvent{constructor(anchor,tag,implicit,start_mark,end_mark,flow_style){super(anchor,start_mark,end_mark),this.tag=tag,this.implicit=implicit,this.flow_style=flow_style}},this.CollectionEndEvent=class extends this.Event{},this.StreamStartEvent=class extends this.Event{constructor(start_mark,end_mark,encoding){super(start_mark,end_mark),this.encoding=encoding}},this.StreamEndEvent=class extends this.Event{},this.DocumentStartEvent=class extends this.Event{constructor(start_mark,end_mark,explicit,version,tags){super(start_mark,end_mark),this.explicit=explicit,this.version=version,this.tags=tags}},this.DocumentEndEvent=class extends this.Event{constructor(start_mark,end_mark,explicit){super(start_mark,end_mark),this.explicit=explicit}},this.AliasEvent=class extends this.NodeEvent{},this.ScalarEvent=class extends this.NodeEvent{constructor(anchor,tag,implicit,value,start_mark,end_mark,style){super(anchor,start_mark,end_mark),this.tag=tag,this.implicit=implicit,this.value=value,this.style=style}},this.SequenceStartEvent=class extends this.CollectionStartEvent{},this.SequenceEndEvent=class extends this.CollectionEndEvent{},this.MappingStartEvent=class extends this.CollectionStartEvent{},this.MappingEndEvent=class extends this.CollectionEndEvent{}}).call(this)}),register({0:[&quot;./errors&quot;]},0,function(global,module,exports,require,window){(function(){var indexOf=[].indexOf;this.Mark=class{constructor(line,column,buffer,pointer){this.line=line,this.column=column,this.buffer=buffer,this.pointer=pointer}get_snippet(indent=4,max_length=75){var end,head,ref,ref1,start,tail;if(null==this.buffer)return null;for(&quot;\0\r\n…\u2028\u2029&quot;,head=&quot;&quot;,start=this.pointer;start&gt;0&amp;&amp;(ref=this.buffer[start-1],indexOf.call(&quot;\0\r\n…\u2028\u2029&quot;,ref)&lt;0);)if(start--,this.pointer-start&gt;max_length/2-1){head=&quot; ... &quot;,start+=5;break}for(tail=&quot;&quot;,end=this.pointer;end&lt;this.buffer.length&amp;&amp;(ref1=this.buffer[end],indexOf.call(&quot;\0\r\n…\u2028\u2029&quot;,ref1)&lt;0);)if(++end-this.pointer&gt;max_length/2-1){tail=&quot; ... &quot;,end-=5;break}return`${new Array(indent).join(&quot; &quot;)}${head}${this.buffer.slice(start,end)}${tail}\n${new Array(indent+this.pointer-start+head.length).join(&quot; &quot;)}^`}toString(){var snippet,where;return snippet=this.get_snippet(),where=` on line ${this.line+1}, column ${this.column+1}`,snippet?where:`${where}:\n${snippet}`}},this.YAMLError=class extends Error{constructor(message){super(message),Object.defineProperty(this,&quot;stack&quot;,{get:function(){return this.toString()+&quot;\n&quot;+(new Error).stack.split(&quot;\n&quot;).slice(1).join(&quot;\n&quot;)}})}toString(){return this.message}},this.MarkedYAMLError=class extends this.YAMLError{constructor(context,context_mark,problem,problem_mark,note){super(),this.context=context,this.context_mark=context_mark,this.problem=problem,this.problem_mark=problem_mark,this.note=note}toString(){var lines;return lines=[],null!=this.context&amp;&amp;lines.push(this.context),null==this.context_mark||null!=this.problem&amp;&amp;null!=this.problem_mark&amp;&amp;this.context_mark.line===this.problem_mark.line&amp;&amp;this.context_mark.column===this.problem_mark.column||lines.push(this.context_mark.toString()),null!=this.problem&amp;&amp;lines.push(this.problem),null!=this.problem_mark&amp;&amp;lines.push(this.problem_mark.toString()),null!=this.note&amp;&amp;lines.push(this.note),lines.join(&quot;\n&quot;)}}}).call(this)}),register({0:[&quot;./nodes&quot;]},0,function(global,module,exports,require,window){(function(){var unique_id;unique_id=0,this.Node=class{constructor(tag1,value1,start_mark1,end_mark1){this.tag=tag1,this.value=value1,this.start_mark=start_mark1,this.end_mark=end_mark1,this.unique_id=`node_${unique_id++}`}},this.ScalarNode=function(){class ScalarNode extends this.Node{constructor(tag,value,start_mark,end_mark,style){super(tag,value,start_mark,end_mark),this.style=style}}return ScalarNode.prototype.id=&quot;scalar&quot;,ScalarNode}.call(this),this.CollectionNode=class extends this.Node{constructor(tag,value,start_mark,end_mark,flow_style){super(tag,value,start_mark,end_mark),this.flow_style=flow_style}},this.SequenceNode=function(){class SequenceNode extends this.CollectionNode{}return SequenceNode.prototype.id=&quot;sequence&quot;,SequenceNode}.call(this),this.MappingNode=function(){class MappingNode extends this.CollectionNode{}return MappingNode.prototype.id=&quot;mapping&quot;,MappingNode}.call(this)}).call(this)}),register({0:[&quot;./composer&quot;]},0,function(global,module,exports,require,window){(function(){var MarkedYAMLError,events,nodes;events=require(&quot;./events&quot;),({MarkedYAMLError:MarkedYAMLError}=require(&quot;./errors&quot;)),nodes=require(&quot;./nodes&quot;),this.ComposerError=class extends MarkedYAMLError{},this.Composer=function(){var ctor;class Composer{constructor(){return ctor.apply(this,arguments)}initialise(){return this.anchors={}}check_node(){return this.check_event(events.StreamStartEvent)&amp;&amp;this.get_event(),!this.check_event(events.StreamEndEvent)}get_node(){if(!this.check_event(events.StreamEndEvent))return this.compose_document()}get_single_node(){var document,event;if(this.get_event(),document=null,this.check_event(events.StreamEndEvent)||(document=this.compose_document()),!this.check_event(events.StreamEndEvent))throw event=this.get_event(),new exports.ComposerError(&quot;expected a single document in the stream&quot;,document.start_mark,&quot;but found another document&quot;,event.start_mark);return this.get_event(),document}compose_document(){var node;return this.get_event(),node=this.compose_node(),this.get_event(),this.anchors={},node}compose_node(parent,index){var anchor,event,node;if(this.check_event(events.AliasEvent)){if(event=this.get_event(),!((anchor=event.anchor)in this.anchors))throw new exports.ComposerError(null,null,`found undefined alias ${anchor}`,event.start_mark);return this.anchors[anchor]}if(event=this.peek_event(),null!==(anchor=event.anchor)&amp;&amp;anchor in this.anchors)throw new exports.ComposerError(`found duplicate anchor ${anchor}; first occurence`,this.anchors[anchor].start_mark,&quot;second occurrence&quot;,event.start_mark);return this.descend_resolver(parent,index),this.check_event(events.ScalarEvent)?node=this.compose_scalar_node(anchor):this.check_event(events.SequenceStartEvent)?node=this.compose_sequence_node(anchor):this.check_event(events.MappingStartEvent)&amp;&amp;(node=this.compose_mapping_node(anchor)),this.ascend_resolver(),node}compose_scalar_node(anchor){var event,node,tag;return event=this.get_event(),null!==(tag=event.tag)&amp;&amp;&quot;!&quot;!==tag||(tag=this.resolve(nodes.ScalarNode,event.value,event.implicit)),node=new nodes.ScalarNode(tag,event.value,event.start_mark,event.end_mark,event.style),null!==anchor&amp;&amp;(this.anchors[anchor]=node),node}compose_sequence_node(anchor){var end_event,index,node,start_event,tag;for(null!==(tag=(start_event=this.get_event()).tag)&amp;&amp;&quot;!&quot;!==tag||(tag=this.resolve(nodes.SequenceNode,null,start_event.implicit)),node=new nodes.SequenceNode(tag,[],start_event.start_mark,null,start_event.flow_style),null!==anchor&amp;&amp;(this.anchors[anchor]=node),index=0;!this.check_event(events.SequenceEndEvent);)node.value.push(this.compose_node(node,index)),index++;return end_event=this.get_event(),node.end_mark=end_event.end_mark,node}compose_mapping_node(anchor){var end_event,item_key,item_value,node,start_event,tag;for(null!==(tag=(start_event=this.get_event()).tag)&amp;&amp;&quot;!&quot;!==tag||(tag=this.resolve(nodes.MappingNode,null,start_event.implicit)),node=new nodes.MappingNode(tag,[],start_event.start_mark,null,start_event.flow_style),null!==anchor&amp;&amp;(this.anchors[anchor]=node);!this.check_event(events.MappingEndEvent);)item_key=this.compose_node(node),item_value=this.compose_node(node,item_key),node.value.push([item_key,item_value]);return end_event=this.get_event(),node.end_mark=end_event.end_mark,node}}return ctor=Composer.prototype.initialise,Composer}.call(this)}).call(this)}),register({0:[&quot;./util&quot;]},0,function(global,module,exports,require,window){(function(){var ref,ref1,ref2,hasProp={}.hasOwnProperty;this.StringStream=class{constructor(){this.string=&quot;&quot;}write(chunk){return this.string+=chunk}},this.clone=(obj=&gt;Object.assign({},obj)),this.extend=function(destination,...sources){var i,j,len,len1,name,ref,source;for(i=0,len=sources.length;i&lt;len;i++)for(source=sources[i];source!==Object.prototype;){for(j=0,len1=(ref=Object.getOwnPropertyNames(source)).length;j&lt;len1;j++)null==destination[name=ref[j]]&amp;&amp;(destination[name]=source[name]);source=Object.getPrototypeOf(source)}return destination},this.is_empty=function(obj){var key;if(Array.isArray(obj)||&quot;string&quot;==typeof obj)return 0===obj.length;for(key in obj)if(hasProp.call(obj,key))return!1;return!0},this.inspect=null!=(ref=null!=(ref1=null!=(ref2=require(&quot;util&quot;))?ref2.inspect:void 0)?ref1:global.inspect)?ref:function(a){return`${a}`},this.pad_left=function(str,char,length){return(str=String(str)).length&gt;=length?str:str.length+1===length?`${char}${str}`:`${new Array(length-str.length+1).join(char)}${str}`},this.to_hex=function(num){return&quot;string&quot;==typeof num&amp;&amp;(num=num.charCodeAt(0)),num.toString(16)}}).call(this)}),register({0:[&quot;./constructor&quot;]},0,function(global,module,exports,require,window){(function(){var MarkedYAMLError,nodes,util,indexOf=[].indexOf;({MarkedYAMLError:MarkedYAMLError}=require(&quot;./errors&quot;)),nodes=require(&quot;./nodes&quot;),util=require(&quot;./util&quot;),this.ConstructorError=class extends MarkedYAMLError{},this.BaseConstructor=function(){var ctor;class BaseConstructor{constructor(){return ctor.apply(this,arguments)}static add_constructor(tag,constructor){return this.prototype.hasOwnProperty(&quot;yaml_constructors&quot;)||(this.prototype.yaml_constructors=util.extend({},this.prototype.yaml_constructors)),this.prototype.yaml_constructors[tag]=constructor}static add_multi_constructor(tag_prefix,multi_constructor){return this.prototype.hasOwnProperty(&quot;yaml_multi_constructors&quot;)||(this.prototype.yaml_multi_constructors=util.extend({},this.prototype.yaml_multi_constructors)),this.prototype.yaml_multi_constructors[tag_prefix]=multi_constructor}initialise(){return this.constructed_objects={},this.constructing_nodes=[],this.deferred_constructors=[]}check_data(){return this.check_node()}get_data(){if(this.check_node())return this.construct_document(this.get_node())}get_single_data(){var node;return null!=(node=this.get_single_node())?this.construct_document(node):null}construct_document(node){var data;for(data=this.construct_object(node);!util.is_empty(this.deferred_constructors);)this.deferred_constructors.pop()();return data}defer(f){return this.deferred_constructors.push(f)}construct_object(node){var constructor,object,ref,tag_prefix,tag_suffix;if(node.unique_id in this.constructed_objects)return this.constructed_objects[node.unique_id];if(ref=node.unique_id,indexOf.call(this.constructing_nodes,ref)&gt;=0)throw new exports.ConstructorError(null,null,&quot;found unconstructable recursive node&quot;,node.start_mark);if(this.constructing_nodes.push(node.unique_id),constructor=null,tag_suffix=null,node.tag in this.yaml_constructors)constructor=this.yaml_constructors[node.tag];else{for(tag_prefix in this.yaml_multi_constructors)if(node.tag.indexOf(0===tag_prefix)){tag_suffix=node.tag.slice(tag_prefix.length),constructor=this.yaml_multi_constructors[tag_prefix];break}null==constructor&amp;&amp;(null in this.yaml_multi_constructors?(tag_suffix=node.tag,constructor=this.yaml_multi_constructors.null):null in this.yaml_constructors?constructor=this.yaml_constructors.null:node instanceof nodes.ScalarNode?constructor=this.construct_scalar:node instanceof nodes.SequenceNode?constructor=this.construct_sequence:node instanceof nodes.MappingNode&amp;&amp;(constructor=this.construct_mapping))}return object=constructor.call(this,null!=tag_suffix?tag_suffix:node,node),this.constructed_objects[node.unique_id]=object,this.constructing_nodes.pop(),object}construct_scalar(node){if(!(node instanceof nodes.ScalarNode))throw new exports.ConstructorError(null,null,`expected a scalar node but found ${node.id}`,node.start_mark);return node.value}construct_sequence(node){var child,i,len,ref,results;if(!(node instanceof nodes.SequenceNode))throw new exports.ConstructorError(null,null,`expected a sequence node but found ${node.id}`,node.start_mark);for(results=[],i=0,len=(ref=node.value).length;i&lt;len;i++)child=ref[i],results.push(this.construct_object(child));return results}construct_mapping(node){var i,key,key_node,len,mapping,ref,value,value_node;if(!(node instanceof nodes.MappingNode))throw new ConstructorError(null,null,`expected a mapping node but found ${node.id}`,node.start_mark);for(mapping={},i=0,len=(ref=node.value).length;i&lt;len;i++){if([key_node,value_node]=ref[i],&quot;object&quot;==typeof(key=this.construct_object(key_node)))throw new exports.ConstructorError(&quot;while constructing a mapping&quot;,node.start_mark,&quot;found unhashable key&quot;,key_node.start_mark);value=this.construct_object(value_node),mapping[key]=value}return mapping}construct_pairs(node){var i,key,key_node,len,pairs,ref,value,value_node;if(!(node instanceof nodes.MappingNode))throw new exports.ConstructorError(null,null,`expected a mapping node but found ${node.id}`,node.start_mark);for(pairs=[],i=0,len=(ref=node.value).length;i&lt;len;i++)[key_node,value_node]=ref[i],key=this.construct_object(key_node),value=this.construct_object(value_node),pairs.push([key,value]);return pairs}}return BaseConstructor.prototype.yaml_constructors={},BaseConstructor.prototype.yaml_multi_constructors={},ctor=BaseConstructor.prototype.initialise,BaseConstructor}.call(this),this.Constructor=function(){var BOOL_VALUES,TIMESTAMP_PARTS,TIMESTAMP_REGEX;return BOOL_VALUES={on:!0,off:!1,true:!0,false:!1,yes:!0,no:!1},TIMESTAMP_REGEX=/^([0-9][0-9][0-9][0-9])-([0-9][0-9]?)-([0-9][0-9]?)(?:(?:[Tt]|[\x20\t]+)([0-9][0-9]?):([0-9][0-9]):([0-9][0-9])(?:\.([0-9]*))?(?:[\x20\t]*(Z|([-+])([0-9][0-9]?)(?::([0-9][0-9]))?))?)?$/,TIMESTAMP_PARTS={year:1,month:2,day:3,hour:4,minute:5,second:6,fraction:7,tz:8,tz_sign:9,tz_hour:10,tz_minute:11},class extends this.BaseConstructor{construct_scalar(node){var i,key_node,len,ref,value_node;if(node instanceof nodes.MappingNode)for(i=0,len=(ref=node.value).length;i&lt;len;i++)if([key_node,value_node]=ref[i],&quot;tag:yaml.org,2002:value&quot;===key_node.tag)return this.construct_scalar(value_node);return super.construct_scalar(node)}flatten_mapping(node){var i,index,j,key_node,len,len1,merge,ref,submerge,subnode,value,value_node;for(merge=[],index=0;index&lt;node.value.length;)if([key_node,value_node]=node.value[index],&quot;tag:yaml.org,2002:merge&quot;===key_node.tag)if(node.value.splice(index,1),value_node instanceof nodes.MappingNode)this.flatten_mapping(value_node),merge=merge.concat(value_node.value);else{if(!(value_node instanceof nodes.SequenceNode))throw new exports.ConstructorError(&quot;while constructing a mapping&quot;,node.start_mark,`expected a mapping or list of mappings for merging but found ${value_node.id}`,value_node.start_mark);for(submerge=[],i=0,len=(ref=value_node.value).length;i&lt;len;i++){if(!((subnode=ref[i])instanceof nodes.MappingNode))throw new exports.ConstructorError(&quot;while constructing a mapping&quot;,node.start_mark,`expected a mapping for merging, but found ${subnode.id}`,subnode.start_mark);this.flatten_mapping(subnode),submerge.push(subnode.value)}for(submerge.reverse(),j=0,len1=submerge.length;j&lt;len1;j++)value=submerge[j],merge=merge.concat(value)}else&quot;tag:yaml.org,2002:value&quot;===key_node.tag?(key_node.tag=&quot;tag:yaml.org,2002:str&quot;,index++):index++;if(merge.length)return node.value=merge.concat(node.value)}construct_mapping(node){return node instanceof nodes.MappingNode&amp;&amp;this.flatten_mapping(node),super.construct_mapping(node)}construct_yaml_null(node){return this.construct_scalar(node),null}construct_yaml_bool(node){var value;return value=this.construct_scalar(node),BOOL_VALUES[value.toLowerCase()]}construct_yaml_int(node){var base,digit,digits,i,len,part,ref,sign,value;if(value=this.construct_scalar(node),value=value.replace(/_/g,&quot;&quot;),sign=&quot;-&quot;===value[0]?-1:1,ref=value[0],indexOf.call(&quot;+-&quot;,ref)&gt;=0&amp;&amp;(value=value.slice(1)),&quot;0&quot;===value)return 0;if(0===value.indexOf(&quot;0b&quot;))return sign*parseInt(value.slice(2),2);if(0===value.indexOf(&quot;0x&quot;))return sign*parseInt(value.slice(2),16);if(0===value.indexOf(&quot;0o&quot;))return sign*parseInt(value.slice(2),8);if(&quot;0&quot;===value[0])return sign*parseInt(value,8);if(indexOf.call(value,&quot;:&quot;)&gt;=0){for((digits=function(){var i,len,ref1,results;for(results=[],i=0,len=(ref1=value.split(/:/g)).length;i&lt;len;i++)part=ref1[i],results.push(parseInt(part));return results}()).reverse(),base=1,value=0,i=0,len=digits.length;i&lt;len;i++)digit=digits[i],value+=digit*base,base*=60;return sign*value}return sign*parseInt(value)}construct_yaml_float(node){var base,digit,digits,i,len,part,ref,sign,value;if(value=this.construct_scalar(node),value=value.replace(/_/g,&quot;&quot;).toLowerCase(),sign=&quot;-&quot;===value[0]?-1:1,ref=value[0],indexOf.call(&quot;+-&quot;,ref)&gt;=0&amp;&amp;(value=value.slice(1)),&quot;.inf&quot;===value)return Infinity*sign;if(&quot;.nan&quot;===value)return NaN;if(indexOf.call(value,&quot;:&quot;)&gt;=0){for((digits=function(){var i,len,ref1,results;for(results=[],i=0,len=(ref1=value.split(/:/g)).length;i&lt;len;i++)part=ref1[i],results.push(parseFloat(part));return results}()).reverse(),base=1,value=0,i=0,len=digits.length;i&lt;len;i++)digit=digits[i],value+=digit*base,base*=60;return sign*value}return sign*parseFloat(value)}construct_yaml_binary(node){var error,value;value=this.construct_scalar(node);try{return void 0!==window&amp;&amp;null!==window?atob(value):new Buffer(value,&quot;base64&quot;).toString(&quot;ascii&quot;)}catch(error1){throw error=error1,new exports.ConstructorError(null,null,`failed to decode base64 data: ${error}`,node.start_mark)}}construct_yaml_timestamp(node){var day,fraction,hour,index,key,match,millisecond,minute,month,second,tz_hour,tz_minute,tz_sign,values,year;this.construct_scalar(node),match=node.value.match(TIMESTAMP_REGEX),values={};for(key in TIMESTAMP_PARTS)index=TIMESTAMP_PARTS[key],values[key]=match[index];if(year=parseInt(values.year),month=parseInt(values.month)-1,day=parseInt(values.day),!values.hour)return new Date(Date.UTC(year,month,day));if(hour=parseInt(values.hour),minute=parseInt(values.minute),second=parseInt(values.second),millisecond=0,values.fraction){for(fraction=values.fraction.slice(0,6);fraction.length&lt;6;)fraction+=&quot;0&quot;;fraction=parseInt(fraction),millisecond=Math.round(fraction/1e3)}return values.tz_sign&amp;&amp;(tz_sign=&quot;-&quot;===values.tz_sign?1:-1,(tz_hour=parseInt(values.tz_hour))&amp;&amp;(hour+=tz_sign*tz_hour),(tz_minute=parseInt(values.tz_minute))&amp;&amp;(minute+=tz_sign*tz_minute)),new Date(Date.UTC(year,month,day,hour,minute,second,millisecond))}construct_yaml_pair_list(type,node){var list;if(list=[],!(node instanceof nodes.SequenceNode))throw new exports.ConstructorError(`while constructing ${type}`,node.start_mark,`expected a sequence but found ${node.id}`,node.start_mark);return this.defer(()=&gt;{var i,key,key_node,len,ref,results,subnode,value,value_node;for(results=[],i=0,len=(ref=node.value).length;i&lt;len;i++){if(!((subnode=ref[i])instanceof nodes.MappingNode))throw new exports.ConstructorError(`while constructing ${type}`,node.start_mark,`expected a mapping of length 1 but found ${subnode.id}`,subnode.start_mark);if(1!==subnode.value.length)throw new exports.ConstructorError(`while constructing ${type}`,node.start_mark,`expected a mapping of length 1 but found ${subnode.id}`,subnode.start_mark);[key_node,value_node]=subnode.value[0],key=this.construct_object(key_node),value=this.construct_object(value_node),results.push(list.push([key,value]))}return results}),list}construct_yaml_omap(node){return this.construct_yaml_pair_list(&quot;an ordered map&quot;,node)}construct_yaml_pairs(node){return this.construct_yaml_pair_list(&quot;pairs&quot;,node)}construct_yaml_set(node){var data;return data=[],this.defer(()=&gt;{var item,results;results=[];for(item in this.construct_mapping(node))results.push(data.push(item));return results}),data}construct_yaml_str(node){return this.construct_scalar(node)}construct_yaml_seq(node){var data;return data=[],this.defer(()=&gt;{var i,item,len,ref,results;for(results=[],i=0,len=(ref=this.construct_sequence(node)).length;i&lt;len;i++)item=ref[i],results.push(data.push(item));return results}),data}construct_yaml_map(node){var data;return data={},this.defer(()=&gt;{var key,ref,results,value;ref=this.construct_mapping(node),results=[];for(key in ref)value=ref[key],results.push(data[key]=value);return results}),data}construct_yaml_object(node,klass){var data;return data=new klass,this.defer(()=&gt;{var key,ref,results,value;ref=this.construct_mapping(node,!0),results=[];for(key in ref)value=ref[key],results.push(data[key]=value);return results}),data}construct_undefined(node){throw new exports.ConstructorError(null,null,`could not determine a constructor for the tag ${node.tag}`,node.start_mark)}}}.call(this),this.Constructor.add_constructor(&quot;tag:yaml.org,2002:null&quot;,this.Constructor.prototype.construct_yaml_null),this.Constructor.add_constructor(&quot;tag:yaml.org,2002:bool&quot;,this.Constructor.prototype.construct_yaml_bool),this.Constructor.add_constructor(&quot;tag:yaml.org,2002:int&quot;,this.Constructor.prototype.construct_yaml_int),this.Constructor.add_constructor(&quot;tag:yaml.org,2002:float&quot;,this.Constructor.prototype.construct_yaml_float),this.Constructor.add_constructor(&quot;tag:yaml.org,2002:binary&quot;,this.Constructor.prototype.construct_yaml_binary),this.Constructor.add_constructor(&quot;tag:yaml.org,2002:timestamp&quot;,this.Constructor.prototype.construct_yaml_timestamp),this.Constructor.add_constructor(&quot;tag:yaml.org,2002:omap&quot;,this.Constructor.prototype.construct_yaml_omap),this.Constructor.add_constructor(&quot;tag:yaml.org,2002:pairs&quot;,this.Constructor.prototype.construct_yaml_pairs),this.Constructor.add_constructor(&quot;tag:yaml.org,2002:set&quot;,this.Constructor.prototype.construct_yaml_set),this.Constructor.add_constructor(&quot;tag:yaml.org,2002:str&quot;,this.Constructor.prototype.construct_yaml_str),this.Constructor.add_constructor(&quot;tag:yaml.org,2002:seq&quot;,this.Constructor.prototype.construct_yaml_seq),this.Constructor.add_constructor(&quot;tag:yaml.org,2002:map&quot;,this.Constructor.prototype.construct_yaml_map),this.Constructor.add_constructor(null,this.Constructor.prototype.construct_undefined)}).call(this)}),register({0:[&quot;./emitter&quot;]},0,function(global,module,exports,require,window){(function(){var ScalarAnalysis,YAMLError,events,util,hasProp={}.hasOwnProperty,indexOf=[].indexOf;events=require(&quot;./events&quot;),util=require(&quot;./util&quot;),({YAMLError:YAMLError}=require(&quot;./errors&quot;)),this.EmitterError=class extends YAMLError{},this.Emitter=function(){var C_WHITESPACE,DEFAULT_TAG_PREFIXES,ESCAPE_REPLACEMENTS,ctor;class Emitter{constructor(){return ctor.apply(this,arguments)}initialise(stream,options){var ref;return this.stream=stream,this.encoding=null,this.states=[],this.state=this.expect_stream_start,this.events=[],this.event=null,this.indents=[],this.indent=null,this.flow_level=0,this.root_context=!1,this.sequence_context=!1,this.mapping_context=!1,this.simple_key_context=!1,this.line=0,this.column=0,this.whitespace=!0,this.indentation=!0,this.open_ended=!1,({canonical:this.canonical,allow_unicode:this.allow_unicode}=options),null==this.canonical&amp;&amp;(this.canonical=!1),null==this.allow_unicode&amp;&amp;(this.allow_unicode=!0),this.best_indent=1&lt;options.indent&amp;&amp;options.indent&lt;10?options.indent:2,this.best_width=options.width&gt;2*this.indent?options.width:80,this.best_line_break=&quot;\r&quot;===(ref=options.line_break)||&quot;\n&quot;===ref||&quot;\r\n&quot;===ref?options.line_break:&quot;\n&quot;,this.tag_prefixes=null,this.prepared_anchor=null,this.prepared_tag=null,this.analysis=null,this.style=null}dispose(){return this.states=[],this.state=null}emit(event){var results;for(this.events.push(event),results=[];!this.need_more_events();)this.event=this.events.shift(),this.state(),results.push(this.event=null);return results}need_more_events(){var event;return 0===this.events.length||((event=this.events[0])instanceof events.DocumentStartEvent?this.need_events(1):event instanceof events.SequenceStartEvent?this.need_events(2):event instanceof events.MappingStartEvent&amp;&amp;this.need_events(3))}need_events(count){var event,i,len,level,ref;for(level=0,i=0,len=(ref=this.events.slice(1)).length;i&lt;len;i++)if((event=ref[i])instanceof events.DocumentStartEvent||event instanceof events.CollectionStartEvent?level++:event instanceof events.DocumentEndEvent||event instanceof events.CollectionEndEvent?level--:event instanceof events.StreamEndEvent&amp;&amp;(level=-1),level&lt;0)return!1;return this.events.length&lt;count+1}increase_indent(options={}){return this.indents.push(this.indent),null==this.indent?this.indent=options.flow?this.best_indent:0:options.indentless?void 0:this.indent+=this.best_indent}expect_stream_start(){return this.event instanceof events.StreamStartEvent?(!this.event.encoding||&quot;encoding&quot;in this.stream||(this.encoding=this.event.encoding),this.write_stream_start(),this.state=this.expect_first_document_start):this.error(&quot;expected StreamStartEvent, but got&quot;,this.event)}expect_nothing(){return this.error(&quot;expected nothing, but got&quot;,this.event)}expect_first_document_start(){return this.expect_document_start(!0)}expect_document_start(first=!1){var handle,i,k,len,prefix,ref;if(this.event instanceof events.DocumentStartEvent){if((this.event.version||this.event.tags)&amp;&amp;this.open_ended&amp;&amp;(this.write_indicator(&quot;...&quot;,!0),this.write_indent()),this.event.version&amp;&amp;this.write_version_directive(this.prepare_version(this.event.version)),this.tag_prefixes=util.clone(DEFAULT_TAG_PREFIXES),this.event.tags)for(i=0,len=(ref=function(){var ref,results;ref=this.event.tags,results=[];for(k in ref)hasProp.call(ref,k)&amp;&amp;results.push(k);return results}.call(this).sort()).length;i&lt;len;i++)handle=ref[i],prefix=this.event.tags[handle],this.tag_prefixes[prefix]=handle,this.write_tag_directive(this.prepare_tag_handle(handle),this.prepare_tag_prefix(prefix));return(!first||this.event.explicit||this.canonical||this.event.version||this.event.tags||this.check_empty_document())&amp;&amp;(this.write_indent(),this.write_indicator(&quot;---&quot;,!0),this.canonical&amp;&amp;this.write_indent()),this.state=this.expect_document_root}return this.event instanceof events.StreamEndEvent?(this.open_ended&amp;&amp;(this.write_indicator(&quot;...&quot;,!0),this.write_indent()),this.write_stream_end(),this.state=this.expect_nothing):this.error(&quot;expected DocumentStartEvent, but got&quot;,this.event)}expect_document_end(){return this.event instanceof events.DocumentEndEvent?(this.write_indent(),this.event.explicit&amp;&amp;(this.write_indicator(&quot;...&quot;,!0),this.write_indent()),this.flush_stream(),this.state=this.expect_document_start):this.error(&quot;expected DocumentEndEvent, but got&quot;,this.event)}expect_document_root(){return this.states.push(this.expect_document_end),this.expect_node({root:!0})}expect_node(expect={}){return this.root_context=!!expect.root,this.sequence_context=!!expect.sequence,this.mapping_context=!!expect.mapping,this.simple_key_context=!!expect.simple_key,this.event instanceof events.AliasEvent?this.expect_alias():this.event instanceof events.ScalarEvent||this.event instanceof events.CollectionStartEvent?(this.process_anchor(&quot;&amp;&quot;),this.process_tag(),this.event instanceof events.ScalarEvent?this.expect_scalar():this.event instanceof events.SequenceStartEvent?this.flow_level||this.canonical||this.event.flow_style||this.check_empty_sequence()?this.expect_flow_sequence():this.expect_block_sequence():this.event instanceof events.MappingStartEvent?this.flow_level||this.canonical||this.event.flow_style||this.check_empty_mapping()?this.expect_flow_mapping():this.expect_block_mapping():void 0):this.error(&quot;expected NodeEvent, but got&quot;,this.event)}expect_alias(){return this.event.anchor||this.error(&quot;anchor is not specified for alias&quot;),this.process_anchor(&quot;*&quot;),this.state=this.states.pop()}expect_scalar(){return this.increase_indent({flow:!0}),this.process_scalar(),this.indent=this.indents.pop(),this.state=this.states.pop()}expect_flow_sequence(){return this.write_indicator(&quot;[&quot;,!0,{whitespace:!0}),this.flow_level++,this.increase_indent({flow:!0}),this.state=this.expect_first_flow_sequence_item}expect_first_flow_sequence_item(){return this.event instanceof events.SequenceEndEvent?(this.indent=this.indents.pop(),this.flow_level--,this.write_indicator(&quot;]&quot;,!1),this.state=this.states.pop()):((this.canonical||this.column&gt;this.best_width)&amp;&amp;this.write_indent(),this.states.push(this.expect_flow_sequence_item),this.expect_node({sequence:!0}))}expect_flow_sequence_item(){return this.event instanceof events.SequenceEndEvent?(this.indent=this.indents.pop(),this.flow_level--,this.canonical&amp;&amp;(this.write_indicator(&quot;,&quot;,!1),this.write_indent()),this.write_indicator(&quot;]&quot;,!1),this.state=this.states.pop()):(this.write_indicator(&quot;,&quot;,!1),(this.canonical||this.column&gt;this.best_width)&amp;&amp;this.write_indent(),this.states.push(this.expect_flow_sequence_item),this.expect_node({sequence:!0}))}expect_flow_mapping(){return this.write_indicator(&quot;{&quot;,!0,{whitespace:!0}),this.flow_level++,this.increase_indent({flow:!0}),this.state=this.expect_first_flow_mapping_key}expect_first_flow_mapping_key(){return this.event instanceof events.MappingEndEvent?(this.indent=this.indents.pop(),this.flow_level--,this.write_indicator(&quot;}&quot;,!1),this.state=this.states.pop()):((this.canonical||this.column&gt;this.best_width)&amp;&amp;this.write_indent(),!this.canonical&amp;&amp;this.check_simple_key()?(this.states.push(this.expect_flow_mapping_simple_value),this.expect_node({mapping:!0,simple_key:!0})):(this.write_indicator(&quot;?&quot;,!0),this.states.push(this.expect_flow_mapping_value),this.expect_node({mapping:!0})))}expect_flow_mapping_key(){return this.event instanceof events.MappingEndEvent?(this.indent=this.indents.pop(),this.flow_level--,this.canonical&amp;&amp;(this.write_indicator(&quot;,&quot;,!1),this.write_indent()),this.write_indicator(&quot;}&quot;,!1),this.state=this.states.pop()):(this.write_indicator(&quot;,&quot;,!1),(this.canonical||this.column&gt;this.best_width)&amp;&amp;this.write_indent(),!this.canonical&amp;&amp;this.check_simple_key()?(this.states.push(this.expect_flow_mapping_simple_value),this.expect_node({mapping:!0,simple_key:!0})):(this.write_indicator(&quot;?&quot;,!0),this.states.push(this.expect_flow_mapping_value),this.expect_node({mapping:!0})))}expect_flow_mapping_simple_value(){return this.write_indicator(&quot;:&quot;,!1),this.states.push(this.expect_flow_mapping_key),this.expect_node({mapping:!0})}expect_flow_mapping_value(){return(this.canonical||this.column&gt;this.best_width)&amp;&amp;this.write_indent(),this.write_indicator(&quot;:&quot;,!0),this.states.push(this.expect_flow_mapping_key),this.expect_node({mapping:!0})}expect_block_sequence(){var indentless;return indentless=this.mapping_context&amp;&amp;!this.indentation,this.increase_indent({indentless:indentless}),this.state=this.expect_first_block_sequence_item}expect_first_block_sequence_item(){return this.expect_block_sequence_item(!0)}expect_block_sequence_item(first=!1){return!first&amp;&amp;this.event instanceof events.SequenceEndEvent?(this.indent=this.indents.pop(),this.state=this.states.pop()):(this.write_indent(),this.write_indicator(&quot;-&quot;,!0,{indentation:!0}),this.states.push(this.expect_block_sequence_item),this.expect_node({sequence:!0}))}expect_block_mapping(){return this.increase_indent(),this.state=this.expect_first_block_mapping_key}expect_first_block_mapping_key(){return this.expect_block_mapping_key(!0)}expect_block_mapping_key(first=!1){return!first&amp;&amp;this.event instanceof events.MappingEndEvent?(this.indent=this.indents.pop(),this.state=this.states.pop()):(this.write_indent(),this.check_simple_key()?(this.states.push(this.expect_block_mapping_simple_value),this.expect_node({mapping:!0,simple_key:!0})):(this.write_indicator(&quot;?&quot;,!0,{indentation:!0}),this.states.push(this.expect_block_mapping_value),this.expect_node({mapping:!0})))}expect_block_mapping_simple_value(){return this.write_indicator(&quot;:&quot;,!1),this.states.push(this.expect_block_mapping_key),this.expect_node({mapping:!0})}expect_block_mapping_value(){return this.write_indent(),this.write_indicator(&quot;:&quot;,!0,{indentation:!0}),this.states.push(this.expect_block_mapping_key),this.expect_node({mapping:!0})}check_empty_document(){var event;return this.event instanceof events.DocumentStartEvent&amp;&amp;0!==this.events.length&amp;&amp;((event=this.events[0])instanceof events.ScalarEvent&amp;&amp;null==event.anchor&amp;&amp;null==event.tag&amp;&amp;event.implicit&amp;&amp;&quot;&quot;===event.value)}check_empty_sequence(){return this.event instanceof events.SequenceStartEvent&amp;&amp;this.events[0]instanceof events.SequenceEndEvent}check_empty_mapping(){return this.event instanceof events.MappingStartEvent&amp;&amp;this.events[0]instanceof events.MappingEndEvent}check_simple_key(){var length;return length=0,this.event instanceof events.NodeEvent&amp;&amp;null!=this.event.anchor&amp;&amp;(null==this.prepared_anchor&amp;&amp;(this.prepared_anchor=this.prepare_anchor(this.event.anchor)),length+=this.prepared_anchor.length),null!=this.event.tag&amp;&amp;(this.event instanceof events.ScalarEvent||this.event instanceof events.CollectionStartEvent)&amp;&amp;(null==this.prepared_tag&amp;&amp;(this.prepared_tag=this.prepare_tag(this.event.tag)),length+=this.prepared_tag.length),this.event instanceof events.ScalarEvent&amp;&amp;(null==this.analysis&amp;&amp;(this.analysis=this.analyze_scalar(this.event.value)),length+=this.analysis.scalar.length),length&lt;128&amp;&amp;(this.event instanceof events.AliasEvent||this.event instanceof events.ScalarEvent&amp;&amp;!this.analysis.empty&amp;&amp;!this.analysis.multiline||this.check_empty_sequence()||this.check_empty_mapping())}process_anchor(indicator){if(null!=this.event.anchor)return null==this.prepared_anchor&amp;&amp;(this.prepared_anchor=this.prepare_anchor(this.event.anchor)),this.prepared_anchor&amp;&amp;this.write_indicator(`${indicator}${this.prepared_anchor}`,!0),this.prepared_anchor=null;this.prepared_anchor=null}process_tag(){var tag;if(tag=this.event.tag,this.event instanceof events.ScalarEvent){if(null==this.style&amp;&amp;(this.style=this.choose_scalar_style()),(!this.canonical||null==tag)&amp;&amp;(&quot;&quot;===this.style&amp;&amp;this.event.implicit[0]||&quot;&quot;!==this.style&amp;&amp;this.event.implicit[1]))return void(this.prepared_tag=null);this.event.implicit[0]&amp;&amp;null==tag&amp;&amp;(tag=&quot;!&quot;,this.prepared_tag=null)}else if((!this.canonical||null==tag)&amp;&amp;this.event.implicit)return void(this.prepared_tag=null);return null==tag&amp;&amp;this.error(&quot;tag is not specified&quot;),null==this.prepared_tag&amp;&amp;(this.prepared_tag=this.prepare_tag(tag)),this.write_indicator(this.prepared_tag,!0),this.prepared_tag=null}process_scalar(){var split;switch(null==this.analysis&amp;&amp;(this.analysis=this.analyze_scalar(this.event.value)),null==this.style&amp;&amp;(this.style=this.choose_scalar_style()),split=!this.simple_key_context,this.style){case&#39;&quot;&#39;:this.write_double_quoted(this.analysis.scalar,split);break;case&quot;&#39;&quot;:this.write_single_quoted(this.analysis.scalar,split);break;case&quot;&gt;&quot;:this.write_folded(this.analysis.scalar);break;case&quot;|&quot;:this.write_literal(this.analysis.scalar);break;default:this.write_plain(this.analysis.scalar,split)}return this.analysis=null,this.style=null}choose_scalar_style(){var ref;return null==this.analysis&amp;&amp;(this.analysis=this.analyze_scalar(this.event.value)),&#39;&quot;&#39;===this.event.style||this.canonical?&#39;&quot;&#39;:this.event.style||!this.event.implicit[0]||this.simple_key_context&amp;&amp;(this.analysis.empty||this.analysis.multiline)||!(this.flow_level&amp;&amp;this.analysis.allow_flow_plain||!this.flow_level&amp;&amp;this.analysis.allow_block_plain)?this.event.style&amp;&amp;(ref=this.event.style,indexOf.call(&quot;|&gt;&quot;,ref)&gt;=0)&amp;&amp;!this.flow_level&amp;&amp;!this.simple_key_context&amp;&amp;this.analysis.allow_block?this.event.style:this.event.style&amp;&amp;&quot;&#39;&quot;!==this.event.style||!this.analysis.allow_single_quoted||this.simple_key_context&amp;&amp;this.analysis.multiline?&#39;&quot;&#39;:&quot;&#39;&quot;:&quot;&quot;}prepare_version([major,minor]){var version;return version=`${major}.${minor}`,1===major?version:this.error(&quot;unsupported YAML version&quot;,version)}prepare_tag_handle(handle){var char,i,len,ref;for(handle||this.error(&quot;tag handle must not be empty&quot;),&quot;!&quot;===handle[0]&amp;&amp;&quot;!&quot;===handle.slice(-1)||this.error(&quot;tag handle must start and end with &#39;!&#39;:&quot;,handle),i=0,len=(ref=handle.slice(1,-1)).length;i&lt;len;i++)&quot;0&quot;&lt;=(char=ref[i])&amp;&amp;char&lt;=&quot;9&quot;||&quot;A&quot;&lt;=char&amp;&amp;char&lt;=&quot;Z&quot;||&quot;a&quot;&lt;=char&amp;&amp;char&lt;=&quot;z&quot;||indexOf.call(&quot;-_&quot;,char)&gt;=0||this.error(`invalid character &#39;${char}&#39; in the tag handle:`,handle);return handle}prepare_tag_prefix(prefix){var char,chunks,end,start;for(prefix||this.error(&quot;tag prefix must not be empty&quot;),chunks=[],start=0,end=+(&quot;!&quot;===prefix[0]);end&lt;prefix.length;)&quot;0&quot;&lt;=(char=prefix[end])&amp;&amp;char&lt;=&quot;9&quot;||&quot;A&quot;&lt;=char&amp;&amp;char&lt;=&quot;Z&quot;||&quot;a&quot;&lt;=char&amp;&amp;char&lt;=&quot;z&quot;||indexOf.call(&quot;-;/?!:@&amp;=+$,_.~*&#39;()[]&quot;,char)&gt;=0?end++:(start&lt;end&amp;&amp;chunks.push(prefix.slice(start,end)),start=end+=1,chunks.push(char));return start&lt;end&amp;&amp;chunks.push(prefix.slice(start,end)),chunks.join(&quot;&quot;)}prepare_tag(tag){var char,chunks,end,handle,i,k,len,prefix,ref,start,suffix,suffix_text;if(tag||this.error(&quot;tag must not be empty&quot;),&quot;!&quot;===tag)return tag;for(handle=null,suffix=tag,i=0,len=(ref=function(){var ref,results;ref=this.tag_prefixes,results=[];for(k in ref)hasProp.call(ref,k)&amp;&amp;results.push(k);return results}.call(this).sort()).length;i&lt;len;i++)prefix=ref[i],0===tag.indexOf(prefix)&amp;&amp;(&quot;!&quot;===prefix||prefix.length&lt;tag.length)&amp;&amp;(handle=this.tag_prefixes[prefix],suffix=tag.slice(prefix.length));for(chunks=[],start=end=0;end&lt;suffix.length;)&quot;0&quot;&lt;=(char=suffix[end])&amp;&amp;char&lt;=&quot;9&quot;||&quot;A&quot;&lt;=char&amp;&amp;char&lt;=&quot;Z&quot;||&quot;a&quot;&lt;=char&amp;&amp;char&lt;=&quot;z&quot;||indexOf.call(&quot;-;/?!:@&amp;=+$,_.~*&#39;()[]&quot;,char)&gt;=0||&quot;!&quot;===char&amp;&amp;&quot;!&quot;!==handle?end++:(start&lt;end&amp;&amp;chunks.push(suffix.slice(start,end)),start=end+=1,chunks.push(char));return start&lt;end&amp;&amp;chunks.push(suffix.slice(start,end)),suffix_text=chunks.join(&quot;&quot;),handle?`${handle}${suffix_text}`:`!&lt;${suffix_text}&gt;`}prepare_anchor(anchor){var char,i,len;for(anchor||this.error(&quot;anchor must not be empty&quot;),i=0,len=anchor.length;i&lt;len;i++)&quot;0&quot;&lt;=(char=anchor[i])&amp;&amp;char&lt;=&quot;9&quot;||&quot;A&quot;&lt;=char&amp;&amp;char&lt;=&quot;Z&quot;||&quot;a&quot;&lt;=char&amp;&amp;char&lt;=&quot;z&quot;||indexOf.call(&quot;-_&quot;,char)&gt;=0||this.error(`invalid character &#39;${char}&#39; in the anchor:`,anchor);return anchor}analyze_scalar(scalar){var allow_block,allow_block_plain,allow_flow_plain,allow_single_quoted,block_indicators,break_space,char,flow_indicators,followed_by_whitespace,i,index,leading_break,leading_space,len,line_breaks,preceded_by_whitespace,previous_break,previous_space,ref,ref1,space_break,special_characters,trailing_break,trailing_space;for(scalar||new ScalarAnalysis(scalar,!0,!1,!1,!0,!0,!0,!1),block_indicators=!1,flow_indicators=!1,line_breaks=!1,special_characters=!1,!1,leading_space=!1,leading_break=!1,trailing_space=!1,trailing_break=!1,break_space=!1,space_break=!1,0!==scalar.indexOf(&quot;---&quot;)&amp;&amp;0!==scalar.indexOf(&quot;...&quot;)||(block_indicators=!0,flow_indicators=!0),preceded_by_whitespace=!0,followed_by_whitespace=1===scalar.length||(ref=scalar[1],indexOf.call(&quot;\0 \t\r\n…\u2028\u2029&quot;,ref)&gt;=0),previous_space=!1,previous_break=!1,index=0,index=i=0,len=scalar.length;i&lt;len;index=++i)char=scalar[index],0===index?indexOf.call(&quot;#,[]{}&amp;*!|&gt;&#39;\&quot;%@`&quot;,char)&gt;=0||&quot;-&quot;===char&amp;&amp;followed_by_whitespace?(flow_indicators=!0,block_indicators=!0):indexOf.call(&quot;?:&quot;,char)&gt;=0&amp;&amp;(flow_indicators=!0,followed_by_whitespace&amp;&amp;(block_indicators=!0)):indexOf.call(&quot;,?[]{}&quot;,char)&gt;=0?flow_indicators=!0:&quot;:&quot;===char?(flow_indicators=!0,followed_by_whitespace&amp;&amp;(block_indicators=!0)):&quot;#&quot;===char&amp;&amp;preceded_by_whitespace&amp;&amp;(flow_indicators=!0,block_indicators=!0),indexOf.call(&quot;\n…\u2028\u2029&quot;,char)&gt;=0&amp;&amp;(line_breaks=!0),&quot;\n&quot;===char||&quot; &quot;&lt;=char&amp;&amp;char&lt;=&quot;~&quot;||(&quot;\ufeff&quot;!==char&amp;&amp;(&quot;…&quot;===char||&quot; &quot;&lt;=char&amp;&amp;char&lt;=&quot;퟿&quot;||&quot;&quot;&lt;=char&amp;&amp;char&lt;=&quot;�&quot;)?(!0,this.allow_unicode||(special_characters=!0)):special_characters=!0),&quot; &quot;===char?(0===index&amp;&amp;(leading_space=!0),index===scalar.length-1&amp;&amp;(trailing_space=!0),previous_break&amp;&amp;(break_space=!0),previous_break=!1,previous_space=!0):indexOf.call(&quot;\n…\u2028\u2029&quot;,char)&gt;=0?(0===index&amp;&amp;(leading_break=!0),index===scalar.length-1&amp;&amp;(trailing_break=!0),previous_space&amp;&amp;(space_break=!0),previous_break=!0,previous_space=!1):(previous_break=!1,previous_space=!1),preceded_by_whitespace=indexOf.call(C_WHITESPACE,char)&gt;=0,followed_by_whitespace=index+2&gt;=scalar.length||(ref1=scalar[index+2],indexOf.call(C_WHITESPACE,ref1)&gt;=0);return allow_flow_plain=!0,allow_block_plain=!0,allow_single_quoted=!0,!0,allow_block=!0,(leading_space||leading_break||trailing_space||trailing_break)&amp;&amp;(allow_flow_plain=allow_block_plain=!1),trailing_space&amp;&amp;(allow_block=!1),break_space&amp;&amp;(allow_flow_plain=allow_block_plain=allow_single_quoted=!1),(space_break||special_characters)&amp;&amp;(allow_flow_plain=allow_block_plain=allow_single_quoted=allow_block=!1),line_breaks&amp;&amp;(allow_flow_plain=allow_block_plain=!1),flow_indicators&amp;&amp;(allow_flow_plain=!1),block_indicators&amp;&amp;(allow_block_plain=!1),new ScalarAnalysis(scalar,!1,line_breaks,allow_flow_plain,allow_block_plain,allow_single_quoted,!0,allow_block)}write_stream_start(){if(this.encoding&amp;&amp;0===this.encoding.indexOf(&quot;utf-16&quot;))return this.stream.write(&quot;\ufeff&quot;,this.encoding)}write_stream_end(){return this.flush_stream()}write_indicator(indicator,need_whitespace,options={}){var data;return data=this.whitespace||!need_whitespace?indicator:&quot; &quot;+indicator,this.whitespace=!!options.whitespace,this.indentation&amp;&amp;(this.indentation=!!options.indentation),this.column+=data.length,this.open_ended=!1,this.stream.write(data,this.encoding)}write_indent(){var data,indent,ref;if(indent=null!=(ref=this.indent)?ref:0,(!this.indentation||this.column&gt;indent||this.column===indent&amp;&amp;!this.whitespace)&amp;&amp;this.write_line_break(),this.column&lt;indent)return this.whitespace=!0,data=new Array(indent-this.column+1).join(&quot; &quot;),this.column=indent,this.stream.write(data,this.encoding)}write_line_break(data){return this.whitespace=!0,this.indentation=!0,this.line+=1,this.column=0,this.stream.write(null!=data?data:this.best_line_break,this.encoding)}write_version_directive(version_text){return this.stream.write(`%YAML ${version_text}`,this.encoding),this.write_line_break()}write_tag_directive(handle_text,prefix_text){return this.stream.write(`%TAG ${handle_text} ${prefix_text}`,this.encoding),this.write_line_break()}write_single_quoted(text,split=!0){var br,breaks,char,data,end,i,len,ref,spaces,start;for(this.write_indicator(&quot;&#39;&quot;,!0),spaces=!1,breaks=!1,start=end=0;end&lt;=text.length;){if(char=text[end],spaces)null!=char&amp;&amp;&quot; &quot;===char||(start+1===end&amp;&amp;this.column&gt;this.best_width&amp;&amp;split&amp;&amp;0!==start&amp;&amp;end!==text.length?this.write_indent():(data=text.slice(start,end),this.column+=data.length,this.stream.write(data,this.encoding)),start=end);else if(breaks){if(null==char||indexOf.call(&quot;\n…\u2028\u2029&quot;,char)&lt;0){for(&quot;\n&quot;===text[start]&amp;&amp;this.write_line_break(),i=0,len=(ref=text.slice(start,end)).length;i&lt;len;i++)&quot;\n&quot;===(br=ref[i])?this.write_line_break():this.write_line_break(br);this.write_indent(),start=end}}else(null==char||indexOf.call(&quot; \n…\u2028\u2029&quot;,char)&gt;=0||&quot;&#39;&quot;===char)&amp;&amp;start&lt;end&amp;&amp;(data=text.slice(start,end),this.column+=data.length,this.stream.write(data,this.encoding),start=end);&quot;&#39;&quot;===char&amp;&amp;(this.column+=2,this.stream.write(&quot;&#39;&#39;&quot;,this.encoding),start=end+1),null!=char&amp;&amp;(spaces=&quot; &quot;===char,breaks=indexOf.call(&quot;\n…\u2028\u2029&quot;,char)&gt;=0),end++}return this.write_indicator(&quot;&#39;&quot;,!1)}write_double_quoted(text,split=!0){var char,data,end,start;for(this.write_indicator(&#39;&quot;&#39;,!0),start=end=0;end&lt;=text.length;)(null==(char=text[end])||indexOf.call(&#39;&quot;\\…\u2028\u2029\ufeff&#39;,char)&gt;=0||!(&quot; &quot;&lt;=char&amp;&amp;char&lt;=&quot;~&quot;||this.allow_unicode&amp;&amp;(&quot; &quot;&lt;=char&amp;&amp;char&lt;=&quot;퟿&quot;||&quot;&quot;&lt;=char&amp;&amp;char&lt;=&quot;�&quot;)))&amp;&amp;(start&lt;end&amp;&amp;(data=text.slice(start,end),this.column+=data.length,this.stream.write(data,this.encoding),start=end),null!=char&amp;&amp;(data=char in ESCAPE_REPLACEMENTS?&quot;\\&quot;+ESCAPE_REPLACEMENTS[char]:char&lt;=&quot;ÿ&quot;?`\\x${util.pad_left(util.to_hex(char),&quot;0&quot;,2)}`:char&lt;=&quot;￿&quot;?`\\u${util.pad_left(util.to_hex(char),&quot;0&quot;,4)}`:`\\U${util.pad_left(util.to_hex(char),&quot;0&quot;,16)}`,this.column+=data.length,this.stream.write(data,this.encoding),start=end+1)),split&amp;&amp;0&lt;end&amp;&amp;end&lt;text.length-1&amp;&amp;(&quot; &quot;===char||start&gt;=end)&amp;&amp;this.column+(end-start)&gt;this.best_width&amp;&amp;(data=`${text.slice(start,end)}\\`,start&lt;end&amp;&amp;(start=end),this.column+=data.length,this.stream.write(data,this.encoding),this.write_indent(),this.whitespace=!1,this.indentation=!1,&quot; &quot;===text[start]&amp;&amp;(data=&quot;\\&quot;,this.column+=data.length,this.stream.write(data,this.encoding))),end++;return this.write_indicator(&#39;&quot;&#39;,!1)}write_folded(text){var br,breaks,char,data,end,hints,i,leading_space,len,ref,results,spaces,start;for(hints=this.determine_block_hints(text),this.write_indicator(`&gt;${hints}`,!0),&quot;+&quot;===hints.slice(-1)&amp;&amp;(this.open_ended=!0),this.write_line_break(),leading_space=!0,breaks=!0,spaces=!1,start=end=0,results=[];end&lt;=text.length;){if(char=text[end],breaks){if(null==char||indexOf.call(&quot;\n…\u2028\u2029&quot;,char)&lt;0){for(leading_space||null==char||&quot; &quot;===char||&quot;\n&quot;!==text[start]||this.write_line_break(),leading_space=&quot; &quot;===char,i=0,len=(ref=text.slice(start,end)).length;i&lt;len;i++)&quot;\n&quot;===(br=ref[i])?this.write_line_break():this.write_line_break(br);null!=char&amp;&amp;this.write_indent(),start=end}}else spaces?&quot; &quot;!==char&amp;&amp;(start+1===end&amp;&amp;this.column&gt;this.best_width?this.write_indent():(data=text.slice(start,end),this.column+=data.length,this.stream.write(data,this.encoding)),start=end):(null==char||indexOf.call(&quot; \n…\u2028\u2029&quot;,char)&gt;=0)&amp;&amp;(data=text.slice(start,end),this.column+=data.length,this.stream.write(data,this.encoding),null==char&amp;&amp;this.write_line_break(),start=end);null!=char&amp;&amp;(breaks=indexOf.call(&quot;\n…\u2028\u2029&quot;,char)&gt;=0,spaces=&quot; &quot;===char),results.push(end++)}return results}write_literal(text){var br,breaks,char,data,end,hints,i,len,ref,results,start;for(hints=this.determine_block_hints(text),this.write_indicator(`|${hints}`,!0),&quot;+&quot;===hints.slice(-1)&amp;&amp;(this.open_ended=!0),this.write_line_break(),breaks=!0,start=end=0,results=[];end&lt;=text.length;){if(char=text[end],breaks){if(null==char||indexOf.call(&quot;\n…\u2028\u2029&quot;,char)&lt;0){for(i=0,len=(ref=text.slice(start,end)).length;i&lt;len;i++)&quot;\n&quot;===(br=ref[i])?this.write_line_break():this.write_line_break(br);null!=char&amp;&amp;this.write_indent(),start=end}}else(null==char||indexOf.call(&quot;\n…\u2028\u2029&quot;,char)&gt;=0)&amp;&amp;(data=text.slice(start,end),this.stream.write(data,this.encoding),null==char&amp;&amp;this.write_line_break(),start=end);null!=char&amp;&amp;(breaks=indexOf.call(&quot;\n…\u2028\u2029&quot;,char)&gt;=0),results.push(end++)}return results}write_plain(text,split=!0){var br,breaks,char,data,end,i,len,ref,results,spaces,start;if(text){for(this.root_context&amp;&amp;(this.open_ended=!0),this.whitespace||(data=&quot; &quot;,this.column+=data.length,this.stream.write(data,this.encoding)),this.whitespace=!1,this.indentation=!1,spaces=!1,breaks=!1,start=end=0,results=[];end&lt;=text.length;){if(char=text[end],spaces)&quot; &quot;!==char&amp;&amp;(start+1===end&amp;&amp;this.column&gt;this.best_width&amp;&amp;split?(this.write_indent(),this.whitespace=!1,this.indentation=!1):(data=text.slice(start,end),this.column+=data.length,this.stream.write(data,this.encoding)),start=end);else if(breaks){if(indexOf.call(&quot;\n…\u2028\u2029&quot;,char)&lt;0){for(&quot;\n&quot;===text[start]&amp;&amp;this.write_line_break(),i=0,len=(ref=text.slice(start,end)).length;i&lt;len;i++)&quot;\n&quot;===(br=ref[i])?this.write_line_break():this.write_line_break(br);this.write_indent(),this.whitespace=!1,this.indentation=!1,start=end}}else(null==char||indexOf.call(&quot; \n…\u2028\u2029&quot;,char)&gt;=0)&amp;&amp;(data=text.slice(start,end),this.column+=data.length,this.stream.write(data,this.encoding),start=end);null!=char&amp;&amp;(spaces=&quot; &quot;===char,breaks=indexOf.call(&quot;\n…\u2028\u2029&quot;,char)&gt;=0),results.push(end++)}return results}}determine_block_hints(text){var first,hints,i,last,penultimate;return hints=&quot;&quot;,first=text[0],i=text.length-2,penultimate=text[i++],last=text[i++],indexOf.call(&quot; \n…\u2028\u2029&quot;,first)&gt;=0&amp;&amp;(hints+=this.best_indent),indexOf.call(&quot;\n…\u2028\u2029&quot;,last)&lt;0?hints+=&quot;-&quot;:(1===text.length||indexOf.call(&quot;\n…\u2028\u2029&quot;,penultimate)&gt;=0)&amp;&amp;(hints+=&quot;+&quot;),hints}flush_stream(){var base;return&quot;function&quot;==typeof(base=this.stream).flush?base.flush():void 0}error(message,context){var ref,ref1;throw context&amp;&amp;(context=null!=(ref=null!=context&amp;&amp;null!=(ref1=context.constructor)?ref1.name:void 0)?ref:util.inspect(context)),new exports.EmitterError(`${message}${context?` ${context}`:&quot;&quot;}`)}}return C_WHITESPACE=&quot;\0 \t\r\n…\u2028\u2029&quot;,DEFAULT_TAG_PREFIXES={&quot;!&quot;:&quot;!&quot;,&quot;tag:yaml.org,2002:&quot;:&quot;!!&quot;},ESCAPE_REPLACEMENTS={&quot;\0&quot;:&quot;0&quot;,&quot;&quot;:&quot;a&quot;,&quot;\b&quot;:&quot;b&quot;,&quot;\t&quot;:&quot;t&quot;,&quot;\n&quot;:&quot;n&quot;,&quot;\v&quot;:&quot;v&quot;,&quot;\f&quot;:&quot;f&quot;,&quot;\r&quot;:&quot;r&quot;,&quot;&quot;:&quot;e&quot;,&#39;&quot;&#39;:&#39;&quot;&#39;,&quot;\\&quot;:&quot;\\&quot;,&quot;…&quot;:&quot;N&quot;,&quot; &quot;:&quot;_&quot;,&quot;\u2028&quot;:&quot;L&quot;,&quot;\u2029&quot;:&quot;P&quot;},ctor=Emitter.prototype.initialise,Emitter}.call(this),ScalarAnalysis=class{constructor(scalar1,empty,multiline,allow_flow_plain1,allow_block_plain1,allow_single_quoted1,allow_double_quoted1,allow_block1){this.scalar=scalar1,this.empty=empty,this.multiline=multiline,this.allow_flow_plain=allow_flow_plain1,this.allow_block_plain=allow_block_plain1,this.allow_single_quoted=allow_single_quoted1,this.allow_double_quoted=allow_double_quoted1,this.allow_block=allow_block1}}}).call(this)}),register({0:[&quot;./serializer&quot;]},0,function(global,module,exports,require,window){(function(){var YAMLError,events,nodes,util;events=require(&quot;./events&quot;),nodes=require(&quot;./nodes&quot;),util=require(&quot;./util&quot;),({YAMLError:YAMLError}=require(&quot;./errors&quot;)),this.SerializerError=class extends YAMLError{},this.Serializer=function(){var ctor;class Serializer{constructor(){return ctor.apply(this,arguments)}initialise({encoding:encoding,explicit_start:explicit_start,explicit_end:explicit_end,version:version,tags:tags}={}){return this.encoding=encoding,this.explicit_start=explicit_start,this.explicit_end=explicit_end,this.version=version,this.tags=tags,this.serialized_nodes={},this.anchors={},this.last_anchor_id=0,this.closed=null}open(){if(null===this.closed)return this.emit(new events.StreamStartEvent(this.encoding)),this.closed=!1;throw this.closed?new SerializerError(&quot;serializer is closed&quot;):new SerializerError(&quot;serializer is already open&quot;)}close(){if(null===this.closed)throw new SerializerError(&quot;serializer is not opened&quot;);if(!this.closed)return this.emit(new events.StreamEndEvent),this.closed=!0}serialize(node){if(null===this.closed)throw new SerializerError(&quot;serializer is not opened&quot;);if(this.closed)throw new SerializerError(&quot;serializer is closed&quot;);return null!=node&amp;&amp;(this.emit(new events.DocumentStartEvent(void 0,void 0,this.explicit_start,this.version,this.tags)),this.anchor_node(node),this.serialize_node(node),this.emit(new events.DocumentEndEvent(void 0,void 0,this.explicit_end))),this.serialized_nodes={},this.anchors={},this.last_anchor_id=0}anchor_node(node){var base,i,item,j,key,len,len1,name,ref,ref1,results,results1,value;if(node.unique_id in this.anchors)return null!=(base=this.anchors)[name=node.unique_id]?base[name]:base[name]=this.generate_anchor(node);if(this.anchors[node.unique_id]=null,node instanceof nodes.SequenceNode){for(results=[],i=0,len=(ref=node.value).length;i&lt;len;i++)item=ref[i],results.push(this.anchor_node(item));return results}if(node instanceof nodes.MappingNode){for(results1=[],j=0,len1=(ref1=node.value).length;j&lt;len1;j++)[key,value]=ref1[j],this.anchor_node(key),results1.push(this.anchor_node(value));return results1}}generate_anchor(node){return`id${util.pad_left(++this.last_anchor_id,&quot;0&quot;,4)}`}serialize_node(node,parent,index){var alias,default_tag,detected_tag,i,implicit,item,j,key,len,len1,ref,ref1,value;if(alias=this.anchors[node.unique_id],node.unique_id in this.serialized_nodes)return this.emit(new events.AliasEvent(alias));if(this.serialized_nodes[node.unique_id]=!0,this.descend_resolver(parent,index),node instanceof nodes.ScalarNode)detected_tag=this.resolve(nodes.ScalarNode,node.value,[!0,!1]),default_tag=this.resolve(nodes.ScalarNode,node.value,[!1,!0]),implicit=[node.tag===detected_tag,node.tag===default_tag],this.emit(new events.ScalarEvent(alias,node.tag,implicit,node.value,void 0,void 0,node.style));else if(node instanceof nodes.SequenceNode){for(implicit=node.tag===this.resolve(nodes.SequenceNode,node.value,!0),this.emit(new events.SequenceStartEvent(alias,node.tag,implicit,void 0,void 0,node.flow_style)),index=i=0,len=(ref=node.value).length;i&lt;len;index=++i)item=ref[index],this.serialize_node(item,node,index);this.emit(new events.SequenceEndEvent)}else if(node instanceof nodes.MappingNode){for(implicit=node.tag===this.resolve(nodes.MappingNode,node.value,!0),this.emit(new events.MappingStartEvent(alias,node.tag,implicit,void 0,void 0,node.flow_style)),j=0,len1=(ref1=node.value).length;j&lt;len1;j++)[key,value]=ref1[j],this.serialize_node(key,node,null),this.serialize_node(value,node,key);this.emit(new events.MappingEndEvent)}return this.ascend_resolver()}}return ctor=Serializer.prototype.initialise,Serializer}.call(this)}).call(this)}),register({0:[&quot;./representer&quot;]},0,function(global,module,exports,require,window){(function(){var YAMLError,nodes,hasProp={}.hasOwnProperty;nodes=require(&quot;./nodes&quot;),({YAMLError:YAMLError}=require(&quot;./errors&quot;)),this.RepresenterError=class extends YAMLError{},this.BaseRepresenter=function(){var ctor;class BaseRepresenter{constructor(){return ctor.apply(this,arguments)}static add_representer(data_type,handler){return this.prototype.hasOwnProperty(&quot;yaml_representers_types&quot;)||(this.prototype.yaml_representers_types=[].concat(this.prototype.yaml_representers_types)),this.prototype.hasOwnProperty(&quot;yaml_representers_handlers&quot;)||(this.prototype.yaml_representers_handlers=[].concat(this.prototype.yaml_representers_handlers)),this.prototype.yaml_representers_types.push(data_type),this.prototype.yaml_representers_handlers.push(handler)}static add_multi_representer(data_type,handler){return this.prototype.hasOwnProperty(&quot;yaml_multi_representers_types&quot;)||(this.prototype.yaml_multi_representers_types=[].concat(this.prototype.yaml_multi_representers_types)),this.prototype.hasOwnProperty(&quot;yaml_multi_representers_handlers&quot;)||(this.prototype.yaml_multi_representers_handlers=[].concat(this.prototype.yaml_multi_representers_handlers)),this.prototype.yaml_multi_representers_types.push(data_type),this.prototype.yaml_multi_representers_handlers.push(handler)}initialise({default_style:default_style,default_flow_style:default_flow_style}={}){return this.default_style=default_style,this.default_flow_style=default_flow_style,this.represented_objects={},this.object_keeper=[],this.alias_key=null}represent(data){var node;return node=this.represent_data(data),this.serialize(node),this.represented_objects={},this.object_keeper=[],this.alias_key=null}represent_data(data){var data_type,i,j,len,ref,representer,type;if(this.ignore_aliases(data))this.alias_key=null;else if(-1!==(i=this.object_keeper.indexOf(data))){if(this.alias_key=i,this.alias_key in this.represented_objects)return this.represented_objects[this.alias_key]}else this.alias_key=this.object_keeper.length,this.object_keeper.push(data);if(representer=null,&quot;object&quot;===(data_type=null===data?&quot;null&quot;:typeof data)&amp;&amp;(data_type=data.constructor),-1!==(i=this.yaml_representers_types.lastIndexOf(data_type))&amp;&amp;(representer=this.yaml_representers_handlers[i]),null==representer)for(i=j=0,len=(ref=this.yaml_multi_representers_types).length;j&lt;len;i=++j)if(type=ref[i],data instanceof type){representer=this.yaml_multi_representers_handlers[i];break}return null==representer&amp;&amp;(-1!==(i=this.yaml_multi_representers_types.lastIndexOf(void 0))?representer=this.yaml_multi_representers_handlers[i]:-1!==(i=this.yaml_representers_types.lastIndexOf(void 0))&amp;&amp;(representer=this.yaml_representers_handlers[i])),null!=representer?representer.call(this,data):new nodes.ScalarNode(null,`${data}`)}represent_scalar(tag,value,style=this.default_style){var node;return node=new nodes.ScalarNode(tag,value,null,null,style),null!=this.alias_key&amp;&amp;(this.represented_objects[this.alias_key]=node),node}represent_sequence(tag,sequence,flow_style){var best_style,item,j,len,node,node_item,ref,value;for(value=[],node=new nodes.SequenceNode(tag,value,null,null,flow_style),null!=this.alias_key&amp;&amp;(this.represented_objects[this.alias_key]=node),best_style=!0,j=0,len=sequence.length;j&lt;len;j++)item=sequence[j],(node_item=this.represent_data(item))instanceof nodes.ScalarNode||node_item.style||(best_style=!1),value.push(node_item);return null==flow_style&amp;&amp;(node.flow_style=null!=(ref=this.default_flow_style)?ref:best_style),node}represent_mapping(tag,mapping,flow_style){var best_style,item_key,item_value,node,node_key,node_value,ref,value;value=[],node=new nodes.MappingNode(tag,value,flow_style),this.alias_key&amp;&amp;(this.represented_objects[this.alias_key]=node),best_style=!0;for(item_key in mapping)hasProp.call(mapping,item_key)&amp;&amp;(item_value=mapping[item_key],node_key=this.represent_data(item_key),node_value=this.represent_data(item_value),node_key instanceof nodes.ScalarNode||node_key.style||(best_style=!1),node_value instanceof nodes.ScalarNode||node_value.style||(best_style=!1),value.push([node_key,node_value]));return flow_style||(node.flow_style=null!=(ref=this.default_flow_style)?ref:best_style),node}ignore_aliases(data){return!1}}return BaseRepresenter.prototype.yaml_representers_types=[],BaseRepresenter.prototype.yaml_representers_handlers=[],BaseRepresenter.prototype.yaml_multi_representers_types=[],BaseRepresenter.prototype.yaml_multi_representers_handlers=[],ctor=BaseRepresenter.prototype.initialise,BaseRepresenter}.call(this),this.Representer=class extends this.BaseRepresenter{represent_boolean(data){return this.represent_scalar(&quot;tag:yaml.org,2002:bool&quot;,data?&quot;true&quot;:&quot;false&quot;)}represent_null(data){return this.represent_scalar(&quot;tag:yaml.org,2002:null&quot;,&quot;null&quot;)}represent_number(data){var tag,value;return tag=`tag:yaml.org,2002:${data%1==0?&quot;int&quot;:&quot;float&quot;}`,value=data!=data?&quot;.nan&quot;:Infinity===data?&quot;.inf&quot;:-Infinity===data?&quot;-.inf&quot;:data.toString(),this.represent_scalar(tag,value)}represent_string(data){return this.represent_scalar(&quot;tag:yaml.org,2002:str&quot;,data)}represent_array(data){return this.represent_sequence(&quot;tag:yaml.org,2002:seq&quot;,data)}represent_date(data){return this.represent_scalar(&quot;tag:yaml.org,2002:timestamp&quot;,data.toISOString())}represent_object(data){return this.represent_mapping(&quot;tag:yaml.org,2002:map&quot;,data)}represent_undefined(data){throw new exports.RepresenterError(`cannot represent an onbject: ${data}`)}ignore_aliases(data){var ref;return null==data||(&quot;boolean&quot;==(ref=typeof data)||&quot;number&quot;===ref||&quot;string&quot;===ref)}},this.Representer.add_representer(&quot;boolean&quot;,this.Representer.prototype.represent_boolean),this.Representer.add_representer(&quot;null&quot;,this.Representer.prototype.represent_null),this.Representer.add_representer(&quot;number&quot;,this.Representer.prototype.represent_number),this.Representer.add_representer(&quot;string&quot;,this.Representer.prototype.represent_string),this.Representer.add_representer(Array,this.Representer.prototype.represent_array),this.Representer.add_representer(Date,this.Representer.prototype.represent_date),this.Representer.add_representer(Object,this.Representer.prototype.represent_object),this.Representer.add_representer(null,this.Representer.prototype.represent_undefined)}).call(this)}),register({0:[&quot;./resolver&quot;]},0,function(global,module,exports,require,window){(function(){var YAMLError,nodes,util,indexOf=[].indexOf;nodes=require(&quot;./nodes&quot;),util=require(&quot;./util&quot;),({YAMLError:YAMLError}=require(&quot;./errors&quot;)),this.ResolverError=class extends YAMLError{},this.BaseResolver=function(){var DEFAULT_MAPPING_TAG,DEFAULT_SCALAR_TAG,DEFAULT_SEQUENCE_TAG,ctor;class BaseResolver{constructor(){return ctor.apply(this,arguments)}static add_implicit_resolver(tag,regexp,first=[null]){var base,char,i,len,results;for(this.prototype.hasOwnProperty(&quot;yaml_implicit_resolvers&quot;)||(this.prototype.yaml_implicit_resolvers=util.extend({},this.prototype.yaml_implicit_resolvers)),results=[],i=0,len=first.length;i&lt;len;i++)char=first[i],results.push((null!=(base=this.prototype.yaml_implicit_resolvers)[char]?base[char]:base[char]=[]).push([tag,regexp]));return results}initialise(){return this.resolver_exact_paths=[],this.resolver_prefix_paths=[]}descend_resolver(current_node,current_index){var depth,exact_paths,i,j,kind,len,len1,path,prefix_paths,ref,ref1;if(!util.is_empty(this.yaml_path_resolvers)){if(exact_paths={},prefix_paths=[],current_node)for(depth=this.resolver_prefix_paths.length,i=0,len=(ref=this.resolver_prefix_paths.slice(-1)[0]).length;i&lt;len;i++)[path,kind]=ref[i],this.check_resolver_prefix(depth,path,kind,current_node,current_index)&amp;&amp;(path.length&gt;depth?prefix_paths.push([path,kind]):exact_paths[kind]=this.yaml_path_resolvers[path][kind]);else for(j=0,len1=(ref1=this.yaml_path_resolvers).length;j&lt;len1;j++)[path,kind]=ref1[j],path?prefix_paths.push([path,kind]):exact_paths[kind]=this.yaml_path_resolvers[path][kind];return this.resolver_exact_paths.push(exact_paths),this.resolver_prefix_paths.push(prefix_paths)}}ascend_resolver(){if(!util.is_empty(this.yaml_path_resolvers))return this.resolver_exact_paths.pop(),this.resolver_prefix_paths.pop()}check_resolver_prefix(depth,path,kind,current_node,current_index){var index_check,node_check;if([node_check,index_check]=path[depth-1],&quot;string&quot;==typeof node_check){if(current_node.tag!==node_check)return}else if(null!==node_check&amp;&amp;!(current_node instanceof node_check))return;if((!0!==index_check||null===current_index)&amp;&amp;(!1!==index_check&amp;&amp;null!==index_check||null!==current_index)){if(&quot;string&quot;==typeof index_check){if(!(current_index instanceof nodes.ScalarNode)&amp;&amp;index_check===current_index.value)return}else if(&quot;number&quot;==typeof index_check&amp;&amp;index_check!==current_index)return;return!0}}resolve(kind,value,implicit){var empty,exact_paths,i,k,len,ref,ref1,ref2,regexp,resolvers,tag;if(kind===nodes.ScalarNode&amp;&amp;implicit[0]){for(i=0,len=(resolvers=(resolvers=&quot;&quot;===value?null!=(ref=this.yaml_implicit_resolvers[&quot;&quot;])?ref:[]:null!=(ref1=this.yaml_implicit_resolvers[value[0]])?ref1:[]).concat(null!=(ref2=this.yaml_implicit_resolvers.null)?ref2:[])).length;i&lt;len;i++)if([tag,regexp]=resolvers[i],value.match(regexp))return tag;implicit=implicit[1]}empty=!0;for(k in this.yaml_path_resolvers)null=={}[k]&amp;&amp;(empty=!1);if(!empty){if(exact_paths=this.resolver_exact_paths.slice(-1)[0],indexOf.call(exact_paths,kind)&gt;=0)return exact_paths[kind];if(indexOf.call(exact_paths,null)&gt;=0)return exact_paths.null}return kind===nodes.ScalarNode?DEFAULT_SCALAR_TAG:kind===nodes.SequenceNode?DEFAULT_SEQUENCE_TAG:kind===nodes.MappingNode?DEFAULT_MAPPING_TAG:void 0}}return DEFAULT_SCALAR_TAG=&quot;tag:yaml.org,2002:str&quot;,DEFAULT_SEQUENCE_TAG=&quot;tag:yaml.org,2002:seq&quot;,DEFAULT_MAPPING_TAG=&quot;tag:yaml.org,2002:map&quot;,BaseResolver.prototype.yaml_implicit_resolvers={},BaseResolver.prototype.yaml_path_resolvers={},ctor=BaseResolver.prototype.initialise,BaseResolver}.call(this),this.Resolver=class extends this.BaseResolver{},this.Resolver.add_implicit_resolver(&quot;tag:yaml.org,2002:bool&quot;,/^(?:yes|Yes|YES|true|True|TRUE|on|On|ON|no|No|NO|false|False|FALSE|off|Off|OFF)$/,&quot;yYnNtTfFoO&quot;),this.Resolver.add_implicit_resolver(&quot;tag:yaml.org,2002:float&quot;,/^(?:[-+]?(?:[0-9][0-9_]*)\.[0-9_]*(?:[eE][-+][0-9]+)?|\.[0-9_]+(?:[eE][-+][0-9]+)?|[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\.[0-9_]*|[-+]?\.(?:inf|Inf|INF)|\.(?:nan|NaN|NAN))$/,&quot;-+0123456789.&quot;),this.Resolver.add_implicit_resolver(&quot;tag:yaml.org,2002:int&quot;,/^(?:[-+]?0b[01_]+|[-+]?0[0-7_]+|[-+]?(?:0|[1-9][0-9_]*)|[-+]?0x[0-9a-fA-F_]+|[-+]?0o[0-7_]+|[-+]?[1-9][0-9_]*(?::[0-5]?[0-9])+)$/,&quot;-+0123456789&quot;),this.Resolver.add_implicit_resolver(&quot;tag:yaml.org,2002:merge&quot;,/^(?:&lt;&lt;)$/,&quot;&lt;&quot;),this.Resolver.add_implicit_resolver(&quot;tag:yaml.org,2002:null&quot;,/^(?:~|null|Null|NULL|)$/,[&quot;~&quot;,&quot;n&quot;,&quot;N&quot;,&quot;&quot;]),this.Resolver.add_implicit_resolver(&quot;tag:yaml.org,2002:timestamp&quot;,/^(?:[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]|[0-9][0-9][0-9][0-9]-[0-9][0-9]?-[0-9][0-9]?(?:[Tt]|[\x20\t]+)[0-9][0-9]?:[0-9][0-9]:[0-9][0-9](?:\.[0-9]*)?(?:[\x20\t]*(?:Z|[-+][0-9][0-9]?(?::[0-9][0-9])?))?)$/,&quot;0123456789&quot;),this.Resolver.add_implicit_resolver(&quot;tag:yaml.org,2002:value&quot;,/^(?:=)$/,&quot;=&quot;),this.Resolver.add_implicit_resolver(&quot;tag:yaml.org,2002:yaml&quot;,/^(?:!|&amp;|\*)$/,&quot;!&amp;*&quot;)}).call(this)}),register({0:[&quot;./dumper&quot;]},0,function(global,module,exports,require,window){(function(){var emitter,representer,resolver,serializer,util;util=require(&quot;./util&quot;),emitter=require(&quot;./emitter&quot;),serializer=require(&quot;./serializer&quot;),representer=require(&quot;./representer&quot;),resolver=require(&quot;./resolver&quot;),this.make_dumper=function(Emitter=emitter.Emitter,Serializer=serializer.Serializer,Representer=representer.Representer,Resolver=resolver.Resolver){var components;return components=[Emitter,Serializer,Representer,Resolver],function(){var component;class Dumper{constructor(stream,options={}){var i,len,ref;for(components[0].prototype.initialise.call(this,stream,options),i=0,len=(ref=components.slice(1)).length;i&lt;len;i++)(component=ref[i]).prototype.initialise.call(this,options)}}return util.extend(Dumper.prototype,...function(){var i,len,results;for(results=[],i=0,len=components.length;i&lt;len;i++)component=components[i],results.push(component.prototype);return results}()),Dumper}.call(this)},this.Dumper=this.make_dumper()}).call(this)}),register({0:[&quot;./reader&quot;]},0,function(global,module,exports,require,window){(function(){var Mark,YAMLError,indexOf=[].indexOf;({Mark:Mark,YAMLError:YAMLError}=require(&quot;./errors&quot;)),this.ReaderError=class extends YAMLError{constructor(position1,character1,reason){super(),this.position=position1,this.character=character1,this.reason=reason}toString(){return`unacceptable character #${this.character.charCodeAt(0).toString(16)}: ${this.reason}\n position ${this.position}`}},this.Reader=function(){var NON_PRINTABLE,ctor;class Reader{constructor(){return ctor.apply(this,arguments)}initialise(string){return this.string=string,this.line=0,this.column=0,this.index=0,this.check_printable(),this.string+=&quot;\0&quot;}peek(index=0){return this.string[this.index+index]}prefix(length=1){return this.string.slice(this.index,this.index+length)}forward(length=1){var char,results;for(results=[];length;)char=this.string[this.index],this.index++,indexOf.call(&quot;\n…₂\u2029&quot;,char)&gt;=0||&quot;\r&quot;===char&amp;&amp;&quot;\n&quot;!==this.string[this.index]?(this.line++,this.column=0):this.column++,results.push(length--);return results}get_mark(){return new Mark(this.line,this.column,this.string,this.index)}check_printable(){var character,match,position;if(match=NON_PRINTABLE.exec(this.string))throw character=match[0],position=this.string.length-this.index+match.index,new exports.ReaderError(position,character,&quot;special characters are not allowed&quot;)}}return NON_PRINTABLE=/[^\x09\x0A\x0D\x20-\x7E\x85\xA0-\uFFFD]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,ctor=Reader.prototype.initialise,Reader}.call(this)}).call(this)}),register({0:[&quot;./tokens&quot;]},0,function(global,module,exports,require,window){(function(){this.Token=class{constructor(start_mark1,end_mark1){this.start_mark=start_mark1,this.end_mark=end_mark1}},this.DirectiveToken=function(){class DirectiveToken extends this.Token{constructor(name,value,start_mark,end_mark){super(start_mark,end_mark),this.name=name,this.value=value}}return DirectiveToken.prototype.id=&quot;&lt;directive&gt;&quot;,DirectiveToken}.call(this),this.DocumentStartToken=function(){class DocumentStartToken extends this.Token{}return DocumentStartToken.prototype.id=&quot;&lt;document start&gt;&quot;,DocumentStartToken}.call(this),this.DocumentEndToken=function(){class DocumentEndToken extends this.Token{}return DocumentEndToken.prototype.id=&quot;&lt;document end&gt;&quot;,DocumentEndToken}.call(this),this.StreamStartToken=function(){class StreamStartToken extends this.Token{constructor(start_mark,end_mark,encoding){super(start_mark,end_mark),this.encoding=encoding}}return StreamStartToken.prototype.id=&quot;&lt;stream start&gt;&quot;,StreamStartToken}.call(this),this.StreamEndToken=function(){class StreamEndToken extends this.Token{}return StreamEndToken.prototype.id=&quot;&lt;stream end&gt;&quot;,StreamEndToken}.call(this),this.BlockSequenceStartToken=function(){class BlockSequenceStartToken extends this.Token{}return BlockSequenceStartToken.prototype.id=&quot;&lt;block sequence start&gt;&quot;,BlockSequenceStartToken}.call(this),this.BlockMappingStartToken=function(){class BlockMappingStartToken extends this.Token{}return BlockMappingStartToken.prototype.id=&quot;&lt;block mapping end&gt;&quot;,BlockMappingStartToken}.call(this),this.BlockEndToken=function(){class BlockEndToken extends this.Token{}return BlockEndToken.prototype.id=&quot;&lt;block end&gt;&quot;,BlockEndToken}.call(this),this.FlowSequenceStartToken=function(){class FlowSequenceStartToken extends this.Token{}return FlowSequenceStartToken.prototype.id=&quot;[&quot;,FlowSequenceStartToken}.call(this),this.FlowMappingStartToken=function(){class FlowMappingStartToken extends this.Token{}return FlowMappingStartToken.prototype.id=&quot;{&quot;,FlowMappingStartToken}.call(this),this.FlowSequenceEndToken=function(){class FlowSequenceEndToken extends this.Token{}return FlowSequenceEndToken.prototype.id=&quot;]&quot;,FlowSequenceEndToken}.call(this),this.FlowMappingEndToken=function(){class FlowMappingEndToken extends this.Token{}return FlowMappingEndToken.prototype.id=&quot;}&quot;,FlowMappingEndToken}.call(this),this.KeyToken=function(){class KeyToken extends this.Token{}return KeyToken.prototype.id=&quot;?&quot;,KeyToken}.call(this),this.ValueToken=function(){class ValueToken extends this.Token{}return ValueToken.prototype.id=&quot;:&quot;,ValueToken}.call(this),this.BlockEntryToken=function(){class BlockEntryToken extends this.Token{}return BlockEntryToken.prototype.id=&quot;-&quot;,BlockEntryToken}.call(this),this.FlowEntryToken=function(){class FlowEntryToken extends this.Token{}return FlowEntryToken.prototype.id=&quot;,&quot;,FlowEntryToken}.call(this),this.AliasToken=function(){class AliasToken extends this.Token{constructor(value,start_mark,end_mark){super(start_mark,end_mark),this.value=value}}return AliasToken.prototype.id=&quot;&lt;alias&gt;&quot;,AliasToken}.call(this),this.AnchorToken=function(){class AnchorToken extends this.Token{constructor(value,start_mark,end_mark){super(start_mark,end_mark),this.value=value}}return AnchorToken.prototype.id=&quot;&lt;anchor&gt;&quot;,AnchorToken}.call(this),this.TagToken=function(){class TagToken extends this.Token{constructor(value,start_mark,end_mark){super(start_mark,end_mark),this.value=value}}return TagToken.prototype.id=&quot;&lt;tag&gt;&quot;,TagToken}.call(this),this.ScalarToken=function(){class ScalarToken extends this.Token{constructor(value,plain,start_mark,end_mark,style){super(start_mark,end_mark),this.value=value,this.plain=plain,this.style=style}}return ScalarToken.prototype.id=&quot;&lt;scalar&gt;&quot;,ScalarToken}.call(this)}).call(this)}),register({0:[&quot;./scanner&quot;]},0,function(global,module,exports,require,window){(function(){var MarkedYAMLError,SimpleKey,tokens,util,hasProp={}.hasOwnProperty,indexOf=[].indexOf;({MarkedYAMLError:MarkedYAMLError}=require(&quot;./errors&quot;)),tokens=require(&quot;./tokens&quot;),util=require(&quot;./util&quot;),this.ScannerError=class extends MarkedYAMLError{},SimpleKey=class{constructor(token_number1,required1,index,line,column1,mark1){this.token_number=token_number1,this.required=required1,this.index=index,this.line=line,this.column=column1,this.mark=mark1}},this.Scanner=function(){var C_LB,C_NUMBERS,C_WS,ESCAPE_CODES,ESCAPE_REPLACEMENTS,ctor;class Scanner{constructor(){return ctor.apply(this,arguments)}initialise(){return this.done=!1,this.flow_level=0,this.tokens=[],this.fetch_stream_start(),this.tokens_taken=0,this.indent=-1,this.indents=[],this.allow_simple_key=!0,this.possible_simple_keys={}}check_token(...choices){for(var choice,i,len;this.need_more_tokens();)this.fetch_more_tokens();if(0!==this.tokens.length){if(0===choices.length)return!0;for(i=0,len=choices.length;i&lt;len;i++)if(choice=choices[i],this.tokens[0]instanceof choice)return!0}return!1}peek_token(){for(;this.need_more_tokens();)this.fetch_more_tokens();if(0!==this.tokens.length)return this.tokens[0]}get_token(){for(;this.need_more_tokens();)this.fetch_more_tokens();if(0!==this.tokens.length)return this.tokens_taken++,this.tokens.shift()}need_more_tokens(){return!this.done&amp;&amp;(0===this.tokens.length||(this.stale_possible_simple_keys(),this.next_possible_simple_key()===this.tokens_taken))}fetch_more_tokens(){var char;if(this.scan_to_next_token(),this.stale_possible_simple_keys(),this.unwind_indent(this.column),&quot;\0&quot;===(char=this.peek()))return this.fetch_stream_end();if(&quot;%&quot;===char&amp;&amp;this.check_directive())return this.fetch_directive();if(&quot;-&quot;===char&amp;&amp;this.check_document_start())return this.fetch_document_start();if(&quot;.&quot;===char&amp;&amp;this.check_document_end())return this.fetch_document_end();if(&quot;[&quot;===char)return this.fetch_flow_sequence_start();if(&quot;{&quot;===char)return this.fetch_flow_mapping_start();if(&quot;]&quot;===char)return this.fetch_flow_sequence_end();if(&quot;}&quot;===char)return this.fetch_flow_mapping_end();if(&quot;,&quot;===char)return this.fetch_flow_entry();if(&quot;-&quot;===char&amp;&amp;this.check_block_entry())return this.fetch_block_entry();if(&quot;?&quot;===char&amp;&amp;this.check_key())return this.fetch_key();if(&quot;:&quot;===char&amp;&amp;this.check_value())return this.fetch_value();if(&quot;*&quot;===char)return this.fetch_alias();if(&quot;&amp;&quot;===char)return this.fetch_anchor();if(&quot;!&quot;===char)return this.fetch_tag();if(&quot;|&quot;===char&amp;&amp;0===this.flow_level)return this.fetch_literal();if(&quot;&gt;&quot;===char&amp;&amp;0===this.flow_level)return this.fetch_folded();if(&quot;&#39;&quot;===char)return this.fetch_single();if(&#39;&quot;&#39;===char)return this.fetch_double();if(this.check_plain())return this.fetch_plain();throw new exports.ScannerError(&quot;while scanning for the next token&quot;,null,`found character ${char} that cannot start any token`,this.get_mark())}next_possible_simple_key(){var key,level,min_token_number,ref;min_token_number=null,ref=this.possible_simple_keys;for(level in ref)hasProp.call(ref,level)&amp;&amp;(key=ref[level],(null===min_token_number||key.token_number&lt;min_token_number)&amp;&amp;(min_token_number=key.token_number));return min_token_number}stale_possible_simple_keys(){var key,level,ref,results;ref=this.possible_simple_keys,results=[];for(level in ref)if(hasProp.call(ref,level)&amp;&amp;!((key=ref[level]).line===this.line&amp;&amp;this.index-key.index&lt;=1024)){if(key.required)throw new exports.ScannerError(&quot;while scanning a simple key&quot;,key.mark,&quot;could not find expected &#39;:&#39;&quot;,this.get_mark());results.push(delete this.possible_simple_keys[level])}return results}save_possible_simple_key(){var required,token_number;if((required=0===this.flow_level&amp;&amp;this.indent===this.column)&amp;&amp;!this.allow_simple_key)throw new Error(&quot;logic failure&quot;);if(this.allow_simple_key)return this.remove_possible_simple_key(),token_number=this.tokens_taken+this.tokens.length,this.possible_simple_keys[this.flow_level]=new SimpleKey(token_number,required,this.index,this.line,this.column,this.get_mark())}remove_possible_simple_key(){var key;if(key=this.possible_simple_keys[this.flow_level]){if(key.required)throw new exports.ScannerError(&quot;while scanning a simple key&quot;,key.mark,&quot;could not find expected &#39;:&#39;&quot;,this.get_mark());return delete this.possible_simple_keys[this.flow_level]}}unwind_indent(column){var mark,results;if(0===this.flow_level){for(results=[];this.indent&gt;column;)mark=this.get_mark(),this.indent=this.indents.pop(),results.push(this.tokens.push(new tokens.BlockEndToken(mark,mark)));return results}}add_indent(column){return column&gt;this.indent&amp;&amp;(this.indents.push(this.indent),this.indent=column,!0)}fetch_stream_start(){var mark;return mark=this.get_mark(),this.tokens.push(new tokens.StreamStartToken(mark,mark,this.encoding))}fetch_stream_end(){var mark;return this.unwind_indent(-1),this.remove_possible_simple_key(),this.allow_possible_simple_key=!1,this.possible_simple_keys={},mark=this.get_mark(),this.tokens.push(new tokens.StreamEndToken(mark,mark)),this.done=!0}fetch_directive(){return this.unwind_indent(-1),this.remove_possible_simple_key(),this.allow_simple_key=!1,this.tokens.push(this.scan_directive())}fetch_document_start(){return this.fetch_document_indicator(tokens.DocumentStartToken)}fetch_document_end(){return this.fetch_document_indicator(tokens.DocumentEndToken)}fetch_document_indicator(TokenClass){var start_mark;return this.unwind_indent(-1),this.remove_possible_simple_key(),this.allow_simple_key=!1,start_mark=this.get_mark(),this.forward(3),this.tokens.push(new TokenClass(start_mark,this.get_mark()))}fetch_flow_sequence_start(){return this.fetch_flow_collection_start(tokens.FlowSequenceStartToken)}fetch_flow_mapping_start(){return this.fetch_flow_collection_start(tokens.FlowMappingStartToken)}fetch_flow_collection_start(TokenClass){var start_mark;return this.save_possible_simple_key(),this.flow_level++,this.allow_simple_key=!0,start_mark=this.get_mark(),this.forward(),this.tokens.push(new TokenClass(start_mark,this.get_mark()))}fetch_flow_sequence_end(){return this.fetch_flow_collection_end(tokens.FlowSequenceEndToken)}fetch_flow_mapping_end(){return this.fetch_flow_collection_end(tokens.FlowMappingEndToken)}fetch_flow_collection_end(TokenClass){var start_mark;return this.remove_possible_simple_key(),this.flow_level--,this.allow_simple_key=!1,start_mark=this.get_mark(),this.forward(),this.tokens.push(new TokenClass(start_mark,this.get_mark()))}fetch_flow_entry(){var start_mark;return this.allow_simple_key=!0,this.remove_possible_simple_key(),start_mark=this.get_mark(),this.forward(),this.tokens.push(new tokens.FlowEntryToken(start_mark,this.get_mark()))}fetch_block_entry(){var mark,start_mark;if(0===this.flow_level){if(!this.allow_simple_key)throw new exports.ScannerError(null,null,&quot;sequence entries are not allowed here&quot;,this.get_mark());this.add_indent(this.column)&amp;&amp;(mark=this.get_mark(),this.tokens.push(new tokens.BlockSequenceStartToken(mark,mark)))}return this.allow_simple_key=!0,this.remove_possible_simple_key(),start_mark=this.get_mark(),this.forward(),this.tokens.push(new tokens.BlockEntryToken(start_mark,this.get_mark()))}fetch_key(){var mark,start_mark;if(0===this.flow_level){if(!this.allow_simple_key)throw new exports.ScannerError(null,null,&quot;mapping keys are not allowed here&quot;,this.get_mark());this.add_indent(this.column)&amp;&amp;(mark=this.get_mark(),this.tokens.push(new tokens.BlockMappingStartToken(mark,mark)))}return this.allow_simple_key=!this.flow_level,this.remove_possible_simple_key(),start_mark=this.get_mark(),this.forward(),this.tokens.push(new tokens.KeyToken(start_mark,this.get_mark()))}fetch_value(){var key,mark,start_mark;if(key=this.possible_simple_keys[this.flow_level])delete this.possible_simple_keys[this.flow_level],this.tokens.splice(key.token_number-this.tokens_taken,0,new tokens.KeyToken(key.mark,key.mark)),0===this.flow_level&amp;&amp;this.add_indent(key.column)&amp;&amp;this.tokens.splice(key.token_number-this.tokens_taken,0,new tokens.BlockMappingStartToken(key.mark,key.mark)),this.allow_simple_key=!1;else{if(0===this.flow_level){if(!this.allow_simple_key)throw new exports.ScannerError(null,null,&quot;mapping values are not allowed here&quot;,this.get_mark());this.add_indent(this.column)&amp;&amp;(mark=this.get_mark(),this.tokens.push(new tokens.BlockMappingStartToken(mark,mark)))}this.allow_simple_key=!this.flow_level,this.remove_possible_simple_key()}return start_mark=this.get_mark(),this.forward(),this.tokens.push(new tokens.ValueToken(start_mark,this.get_mark()))}fetch_alias(){return this.save_possible_simple_key(),this.allow_simple_key=!1,this.tokens.push(this.scan_anchor(tokens.AliasToken))}fetch_anchor(){return this.save_possible_simple_key(),this.allow_simple_key=!1,this.tokens.push(this.scan_anchor(tokens.AnchorToken))}fetch_tag(){return this.save_possible_simple_key(),this.allow_simple_key=!1,this.tokens.push(this.scan_tag())}fetch_literal(){return this.fetch_block_scalar(&quot;|&quot;)}fetch_folded(){return this.fetch_block_scalar(&quot;&gt;&quot;)}fetch_block_scalar(style){return this.allow_simple_key=!0,this.remove_possible_simple_key(),this.tokens.push(this.scan_block_scalar(style))}fetch_single(){return this.fetch_flow_scalar(&quot;&#39;&quot;)}fetch_double(){return this.fetch_flow_scalar(&#39;&quot;&#39;)}fetch_flow_scalar(style){return this.save_possible_simple_key(),this.allow_simple_key=!1,this.tokens.push(this.scan_flow_scalar(style))}fetch_plain(){return this.save_possible_simple_key(),this.allow_simple_key=!1,this.tokens.push(this.scan_plain())}check_directive(){return 0===this.column}check_document_start(){var ref;return 0===this.column&amp;&amp;&quot;---&quot;===this.prefix(3)&amp;&amp;(ref=this.peek(3),indexOf.call(C_LB+C_WS+&quot;\0&quot;,ref)&gt;=0)}check_document_end(){var ref;return 0===this.column&amp;&amp;&quot;...&quot;===this.prefix(3)&amp;&amp;(ref=this.peek(3),indexOf.call(C_LB+C_WS+&quot;\0&quot;,ref)&gt;=0)}check_block_entry(){var ref;return ref=this.peek(1),indexOf.call(C_LB+C_WS+&quot;\0&quot;,ref)&gt;=0}check_key(){var ref;return 0!==this.flow_level||(ref=this.peek(1),indexOf.call(C_LB+C_WS+&quot;\0&quot;,ref)&gt;=0)}check_value(){var ref;return 0!==this.flow_level||(ref=this.peek(1),indexOf.call(C_LB+C_WS+&quot;\0&quot;,ref)&gt;=0)}check_plain(){var char,ref;return char=this.peek(),indexOf.call(C_LB+C_WS+&quot;\0-?:,[]{}#&amp;*!|&gt;&#39;\&quot;%@`&quot;,char)&lt;0||(ref=this.peek(1),indexOf.call(C_LB+C_WS+&quot;\0&quot;,ref)&lt;0&amp;&amp;(&quot;-&quot;===char||0===this.flow_level&amp;&amp;indexOf.call(&quot;?:&quot;,char)&gt;=0))}scan_to_next_token(){var found,ref,results;for(0===this.index&amp;&amp;&quot;\ufeff&quot;===this.peek()&amp;&amp;this.forward(),found=!1,results=[];!found;){for(;&quot; &quot;===this.peek();)this.forward();if(&quot;#&quot;===this.peek())for(;ref=this.peek(),indexOf.call(C_LB+&quot;\0&quot;,ref)&lt;0;)this.forward();this.scan_line_break()?0===this.flow_level?results.push(this.allow_simple_key=!0):results.push(void 0):results.push(found=!0)}return results}scan_directive(){var end_mark,name,ref,start_mark,value;if(start_mark=this.get_mark(),this.forward(),name=this.scan_directive_name(start_mark),value=null,&quot;YAML&quot;===name)value=this.scan_yaml_directive_value(start_mark),end_mark=this.get_mark();else if(&quot;TAG&quot;===name)value=this.scan_tag_directive_value(start_mark),end_mark=this.get_mark();else for(end_mark=this.get_mark();ref=this.peek(),indexOf.call(C_LB+&quot;\0&quot;,ref)&lt;0;)this.forward();return this.scan_directive_ignored_line(start_mark),new tokens.DirectiveToken(name,value,start_mark,end_mark)}scan_directive_name(start_mark){var char,length,value;for(length=0,char=this.peek(length);&quot;0&quot;&lt;=char&amp;&amp;char&lt;=&quot;9&quot;||&quot;A&quot;&lt;=char&amp;&amp;char&lt;=&quot;Z&quot;||&quot;a&quot;&lt;=char&amp;&amp;char&lt;=&quot;z&quot;||indexOf.call(&quot;-_&quot;,char)&gt;=0;)length++,char=this.peek(length);if(0===length)throw new exports.ScannerError(&quot;while scanning a directive&quot;,start_mark,`expected alphanumeric or numeric character but found ${char}`,this.get_mark());if(value=this.prefix(length),this.forward(length),char=this.peek(),indexOf.call(C_LB+&quot;\0 &quot;,char)&lt;0)throw new exports.ScannerError(&quot;while scanning a directive&quot;,start_mark,`expected alphanumeric or numeric character but found ${char}`,this.get_mark());return value}scan_yaml_directive_value(start_mark){for(var major,minor,ref;&quot; &quot;===this.peek();)this.forward();if(major=this.scan_yaml_directive_number(start_mark),&quot;.&quot;!==this.peek())throw new exports.ScannerError(&quot;while scanning a directive&quot;,start_mark,`expected a digit or &#39;.&#39; but found ${this.peek()}`,this.get_mark());if(this.forward(),minor=this.scan_yaml_directive_number(start_mark),ref=this.peek(),indexOf.call(C_LB+&quot;\0 &quot;,ref)&lt;0)throw new exports.ScannerError(&quot;while scanning a directive&quot;,start_mark,`expected a digit or &#39; &#39; but found ${this.peek()}`,this.get_mark());return[major,minor]}scan_yaml_directive_number(start_mark){var char,length,ref,value;if(!(&quot;0&quot;&lt;=(char=this.peek())&amp;&amp;char&lt;=&quot;9&quot;))throw new exports.ScannerError(&quot;while scanning a directive&quot;,start_mark,`expected a digit but found ${char}`,this.get_mark());for(length=0;&quot;0&quot;&lt;=(ref=this.peek(length))&amp;&amp;ref&lt;=&quot;9&quot;;)length++;return value=parseInt(this.prefix(length)),this.forward(length),value}scan_tag_directive_value(start_mark){for(var handle,prefix;&quot; &quot;===this.peek();)this.forward();for(handle=this.scan_tag_directive_handle(start_mark);&quot; &quot;===this.peek();)this.forward();return prefix=this.scan_tag_directive_prefix(start_mark),[handle,prefix]}scan_tag_directive_handle(start_mark){var char,value;if(value=this.scan_tag_handle(&quot;directive&quot;,start_mark),&quot; &quot;!==(char=this.peek()))throw new exports.ScannerError(&quot;while scanning a directive&quot;,start_mark,`expected &#39; &#39; but found ${char}`,this.get_mark());return value}scan_tag_directive_prefix(start_mark){var char,value;if(value=this.scan_tag_uri(&quot;directive&quot;,start_mark),char=this.peek(),indexOf.call(C_LB+&quot;\0 &quot;,char)&lt;0)throw new exports.ScannerError(&quot;while scanning a directive&quot;,start_mark,`expected &#39; &#39; but found ${char}`,this.get_mark());return value}scan_directive_ignored_line(start_mark){for(var char,ref;&quot; &quot;===this.peek();)this.forward();if(&quot;#&quot;===this.peek())for(;ref=this.peek(),indexOf.call(C_LB+&quot;\0&quot;,ref)&lt;0;)this.forward();if(char=this.peek(),indexOf.call(C_LB+&quot;\0&quot;,char)&lt;0)throw new exports.ScannerError(&quot;while scanning a directive&quot;,start_mark,`expected a comment or a line break but found ${char}`,this.get_mark());return this.scan_line_break()}scan_anchor(TokenClass){var char,length,name,start_mark,value;for(start_mark=this.get_mark(),name=&quot;*&quot;===this.peek()?&quot;alias&quot;:&quot;anchor&quot;,this.forward(),length=0,char=this.peek(length);&quot;0&quot;&lt;=char&amp;&amp;char&lt;=&quot;9&quot;||&quot;A&quot;&lt;=char&amp;&amp;char&lt;=&quot;Z&quot;||&quot;a&quot;&lt;=char&amp;&amp;char&lt;=&quot;z&quot;||indexOf.call(&quot;-_&quot;,char)&gt;=0;)length++,char=this.peek(length);if(0===length)throw new exports.ScannerError(`while scanning an ${name}`,start_mark,`expected alphabetic or numeric character but found &#39;${char}&#39;`,this.get_mark());if(value=this.prefix(length),this.forward(length),char=this.peek(),indexOf.call(C_LB+C_WS+&quot;\0?:,]}%@`&quot;,char)&lt;0)throw new exports.ScannerError(`while scanning an ${name}`,start_mark,`expected alphabetic or numeric character but found &#39;${char}&#39;`,this.get_mark());return new TokenClass(value,start_mark,this.get_mark())}scan_tag(){var char,handle,length,start_mark,suffix,use_handle;if(start_mark=this.get_mark(),&quot;&lt;&quot;===(char=this.peek(1))){if(handle=null,this.forward(2),suffix=this.scan_tag_uri(&quot;tag&quot;,start_mark),&quot;&gt;&quot;!==this.peek())throw new exports.ScannerError(&quot;while parsing a tag&quot;,start_mark,`expected &#39;&gt;&#39; but found ${this.peek()}`,this.get_mark());this.forward()}else if(indexOf.call(C_LB+C_WS+&quot;\0&quot;,char)&gt;=0)handle=null,suffix=&quot;!&quot;,this.forward();else{for(length=1,use_handle=!1;indexOf.call(C_LB+&quot;\0 &quot;,char)&lt;0;){if(&quot;!&quot;===char){use_handle=!0;break}length++,char=this.peek(length)}use_handle?handle=this.scan_tag_handle(&quot;tag&quot;,start_mark):(handle=&quot;!&quot;,this.forward()),suffix=this.scan_tag_uri(&quot;tag&quot;,start_mark)}if(char=this.peek(),indexOf.call(C_LB+&quot;\0 &quot;,char)&lt;0)throw new exports.ScannerError(&quot;while scanning a tag&quot;,start_mark,`expected &#39; &#39; but found ${char}`,this.get_mark());return new tokens.TagToken([handle,suffix],start_mark,this.get_mark())}scan_block_scalar(style){var breaks,chomping,chunks,end_mark,folded,increment,indent,leading_non_space,length,line_break,max_indent,min_indent,ref,ref1,ref2,start_mark;for(folded=&quot;&gt;&quot;===style,chunks=[],start_mark=this.get_mark(),this.forward(),[chomping,increment]=this.scan_block_scalar_indicators(start_mark),this.scan_block_scalar_ignored_line(start_mark),(min_indent=this.indent+1)&lt;1&amp;&amp;(min_indent=1),null==increment?([breaks,max_indent,end_mark]=this.scan_block_scalar_indentation(),indent=Math.max(min_indent,max_indent)):(indent=min_indent+increment-1,[breaks,end_mark]=this.scan_block_scalar_breaks(indent)),line_break=&quot;&quot;;this.column===indent&amp;&amp;&quot;\0&quot;!==this.peek();){for(chunks=chunks.concat(breaks),ref=this.peek(),leading_non_space=indexOf.call(&quot; \t&quot;,ref)&lt;0,length=0;ref1=this.peek(length),indexOf.call(C_LB+&quot;\0&quot;,ref1)&lt;0;)length++;if(chunks.push(this.prefix(length)),this.forward(length),line_break=this.scan_line_break(),[breaks,end_mark]=this.scan_block_scalar_breaks(indent),this.column!==indent||&quot;\0&quot;===this.peek())break;folded&amp;&amp;&quot;\n&quot;===line_break&amp;&amp;leading_non_space&amp;&amp;(ref2=this.peek(),indexOf.call(&quot; \t&quot;,ref2)&lt;0)?util.is_empty(breaks)&amp;&amp;chunks.push(&quot; &quot;):chunks.push(line_break)}return!1!==chomping&amp;&amp;chunks.push(line_break),!0===chomping&amp;&amp;(chunks=chunks.concat(breaks)),new tokens.ScalarToken(chunks.join(&quot;&quot;),!1,start_mark,end_mark,style)}scan_block_scalar_indicators(start_mark){var char,chomping,increment;if(chomping=null,increment=null,char=this.peek(),indexOf.call(&quot;+-&quot;,char)&gt;=0){if(chomping=&quot;+&quot;===char,this.forward(),char=this.peek(),indexOf.call(C_NUMBERS,char)&gt;=0){if(0===(increment=parseInt(char)))throw new exports.ScannerError(&quot;while scanning a block scalar&quot;,start_mark,&quot;expected indentation indicator in the range 1-9 but found 0&quot;,this.get_mark());this.forward()}}else if(indexOf.call(C_NUMBERS,char)&gt;=0){if(0===(increment=parseInt(char)))throw new exports.ScannerError(&quot;while scanning a block scalar&quot;,start_mark,&quot;expected indentation indicator in the range 1-9 but found 0&quot;,this.get_mark());this.forward(),char=this.peek(),indexOf.call(&quot;+-&quot;,char)&gt;=0&amp;&amp;(chomping=&quot;+&quot;===char,this.forward())}if(char=this.peek(),indexOf.call(C_LB+&quot;\0 &quot;,char)&lt;0)throw new exports.ScannerError(&quot;while scanning a block scalar&quot;,start_mark,`expected chomping or indentation indicators, but found ${char}`,this.get_mark());return[chomping,increment]}scan_block_scalar_ignored_line(start_mark){for(var char,ref;&quot; &quot;===this.peek();)this.forward();if(&quot;#&quot;===this.peek())for(;ref=this.peek(),indexOf.call(C_LB+&quot;\0&quot;,ref)&lt;0;)this.forward();if(char=this.peek(),indexOf.call(C_LB+&quot;\0&quot;,char)&lt;0)throw new exports.ScannerError(&quot;while scanning a block scalar&quot;,start_mark,`expected a comment or a line break but found ${char}`,this.get_mark());return this.scan_line_break()}scan_block_scalar_indentation(){var chunks,end_mark,max_indent,ref;for(chunks=[],max_indent=0,end_mark=this.get_mark();ref=this.peek(),indexOf.call(C_LB+&quot; &quot;,ref)&gt;=0;)&quot; &quot;!==this.peek()?(chunks.push(this.scan_line_break()),end_mark=this.get_mark()):(this.forward(),this.column&gt;max_indent&amp;&amp;(max_indent=this.column));return[chunks,max_indent,end_mark]}scan_block_scalar_breaks(indent){var chunks,end_mark,ref;for(chunks=[],end_mark=this.get_mark();this.column&lt;indent&amp;&amp;&quot; &quot;===this.peek();)this.forward();for(;ref=this.peek(),indexOf.call(C_LB,ref)&gt;=0;)for(chunks.push(this.scan_line_break()),end_mark=this.get_mark();this.column&lt;indent&amp;&amp;&quot; &quot;===this.peek();)this.forward();return[chunks,end_mark]}scan_flow_scalar(style){var chunks,double,quote,start_mark;for(double=&#39;&quot;&#39;===style,chunks=[],start_mark=this.get_mark(),quote=this.peek(),this.forward(),chunks=chunks.concat(this.scan_flow_scalar_non_spaces(double,start_mark));this.peek()!==quote;)chunks=(chunks=chunks.concat(this.scan_flow_scalar_spaces(double,start_mark))).concat(this.scan_flow_scalar_non_spaces(double,start_mark));return this.forward(),new tokens.ScalarToken(chunks.join(&quot;&quot;),!1,start_mark,this.get_mark(),style)}scan_flow_scalar_non_spaces(double,start_mark){var char,chunks,code,i,k,length,ref,ref1,ref2;for(chunks=[];;){for(length=0;ref=this.peek(length),indexOf.call(C_LB+C_WS+&quot;&#39;\&quot;\\\0&quot;,ref)&lt;0;)length++;if(0!==length&amp;&amp;(chunks.push(this.prefix(length)),this.forward(length)),char=this.peek(),double||&quot;&#39;&quot;!==char||&quot;&#39;&quot;!==this.peek(1))if(double&amp;&amp;&quot;&#39;&quot;===char||!double&amp;&amp;indexOf.call(&#39;&quot;\\&#39;,char)&gt;=0)chunks.push(char),this.forward();else{if(!double||&quot;\\&quot;!==char)return chunks;if(this.forward(),(char=this.peek())in ESCAPE_REPLACEMENTS)chunks.push(ESCAPE_REPLACEMENTS[char]),this.forward();else if(char in ESCAPE_CODES){for(length=ESCAPE_CODES[char],this.forward(),k=i=0,ref1=length;0&lt;=ref1?i&lt;ref1:i&gt;ref1;k=0&lt;=ref1?++i:--i)if(ref2=this.peek(k),indexOf.call(`${C_NUMBERS}ABCDEFabcdef`,ref2)&lt;0)throw new exports.ScannerError(&quot;while scanning a double-quoted scalar&quot;,start_mark,`expected escape sequence of ${length} hexadecimal numbers, but found ${this.peek(k)}`,this.get_mark());code=parseInt(this.prefix(length),16),chunks.push(String.fromCharCode(code)),this.forward(length)}else{if(!(indexOf.call(C_LB,char)&gt;=0))throw new exports.ScannerError(&quot;while scanning a double-quoted scalar&quot;,start_mark,`found unknown escape character ${char}`,this.get_mark());this.scan_line_break(),chunks=chunks.concat(this.scan_flow_scalar_breaks(double,start_mark))}}else chunks.push(&quot;&#39;&quot;),this.forward(2)}}scan_flow_scalar_spaces(double,start_mark){var breaks,char,chunks,length,line_break,ref,whitespaces;for(chunks=[],length=0;ref=this.peek(length),indexOf.call(C_WS,ref)&gt;=0;)length++;if(whitespaces=this.prefix(length),this.forward(length),&quot;\0&quot;===(char=this.peek()))throw new exports.ScannerError(&quot;while scanning a quoted scalar&quot;,start_mark,&quot;found unexpected end of stream&quot;,this.get_mark());return indexOf.call(C_LB,char)&gt;=0?(line_break=this.scan_line_break(),breaks=this.scan_flow_scalar_breaks(double,start_mark),&quot;\n&quot;!==line_break?chunks.push(line_break):0===breaks.length&amp;&amp;chunks.push(&quot; &quot;),chunks=chunks.concat(breaks)):chunks.push(whitespaces),chunks}scan_flow_scalar_breaks(double,start_mark){var chunks,prefix,ref,ref1,ref2;for(chunks=[];;){if(&quot;---&quot;===(prefix=this.prefix(3))||&quot;...&quot;===prefix&amp;&amp;(ref=this.peek(3),indexOf.call(C_LB+C_WS+&quot;\0&quot;,ref)&gt;=0))throw new exports.ScannerError(&quot;while scanning a quoted scalar&quot;,start_mark,&quot;found unexpected document separator&quot;,this.get_mark());for(;ref1=this.peek(),indexOf.call(C_WS,ref1)&gt;=0;)this.forward();if(ref2=this.peek(),!(indexOf.call(C_LB,ref2)&gt;=0))return chunks;chunks.push(this.scan_line_break())}}scan_plain(){var char,chunks,end_mark,indent,length,ref,ref1,spaces,start_mark;for(chunks=[],start_mark=end_mark=this.get_mark(),indent=this.indent+1,spaces=[];length=0,&quot;#&quot;!==this.peek();){for(;char=this.peek(length),!(indexOf.call(C_LB+C_WS+&quot;\0&quot;,char)&gt;=0||0===this.flow_level&amp;&amp;&quot;:&quot;===char&amp;&amp;(ref=this.peek(length+1),indexOf.call(C_LB+C_WS+&quot;\0&quot;,ref)&gt;=0)||0!==this.flow_level&amp;&amp;indexOf.call(&quot;,:?[]{}&quot;,char)&gt;=0);)length++;if(0!==this.flow_level&amp;&amp;&quot;:&quot;===char&amp;&amp;(ref1=this.peek(length+1),indexOf.call(C_LB+C_WS+&quot;\0,[]{}&quot;,ref1)&lt;0))throw this.forward(length),new exports.ScannerError(&quot;while scanning a plain scalar&quot;,start_mark,&quot;found unexpected &#39;:&#39;&quot;,this.get_mark(),&quot;Please check http://pyyaml.org/wiki/YAMLColonInFlowContext&quot;);if(0===length)break;if(this.allow_simple_key=!1,(chunks=chunks.concat(spaces)).push(this.prefix(length)),this.forward(length),end_mark=this.get_mark(),null==(spaces=this.scan_plain_spaces(indent,start_mark))||0===spaces.length||&quot;#&quot;===this.peek()||0===this.flow_level&amp;&amp;this.column&lt;indent)break}return new tokens.ScalarToken(chunks.join(&quot;&quot;),!0,start_mark,end_mark)}scan_plain_spaces(indent,start_mark){var breaks,char,chunks,length,line_break,prefix,ref,ref1,ref2,ref3,whitespaces;for(chunks=[],length=0;ref=this.peek(length),indexOf.call(&quot; &quot;,ref)&gt;=0;)length++;if(whitespaces=this.prefix(length),this.forward(length),char=this.peek(),indexOf.call(C_LB,char)&gt;=0){if(line_break=this.scan_line_break(),this.allow_simple_key=!0,&quot;---&quot;===(prefix=this.prefix(3))||&quot;...&quot;===prefix&amp;&amp;(ref1=this.peek(3),indexOf.call(C_LB+C_WS+&quot;\0&quot;,ref1)&gt;=0))return;for(breaks=[];ref3=this.peek(),indexOf.call(C_LB+&quot; &quot;,ref3)&gt;=0;)if(&quot; &quot;===this.peek())this.forward();else if(breaks.push(this.scan_line_break()),&quot;---&quot;===(prefix=this.prefix(3))||&quot;...&quot;===prefix&amp;&amp;(ref2=this.peek(3),indexOf.call(C_LB+C_WS+&quot;\0&quot;,ref2)&gt;=0))return;&quot;\n&quot;!==line_break?chunks.push(line_break):0===breaks.length&amp;&amp;chunks.push(&quot; &quot;),chunks=chunks.concat(breaks)}else whitespaces&amp;&amp;chunks.push(whitespaces);return chunks}scan_tag_handle(name,start_mark){var char,length,value;if(&quot;!&quot;!==(char=this.peek()))throw new exports.ScannerError(`while scanning a ${name}`,start_mark,`expected &#39;!&#39; but found ${char}`,this.get_mark());if(length=1,&quot; &quot;!==(char=this.peek(length))){for(;&quot;0&quot;&lt;=char&amp;&amp;char&lt;=&quot;9&quot;||&quot;A&quot;&lt;=char&amp;&amp;char&lt;=&quot;Z&quot;||&quot;a&quot;&lt;=char&amp;&amp;char&lt;=&quot;z&quot;||indexOf.call(&quot;-_&quot;,char)&gt;=0;)length++,char=this.peek(length);if(&quot;!&quot;!==char)throw this.forward(length),new exports.ScannerError(`while scanning a ${name}`,start_mark,`expected &#39;!&#39; but found ${char}`,this.get_mark());length++}return value=this.prefix(length),this.forward(length),value}scan_tag_uri(name,start_mark){var char,chunks,length;for(chunks=[],length=0,char=this.peek(length);&quot;0&quot;&lt;=char&amp;&amp;char&lt;=&quot;9&quot;||&quot;A&quot;&lt;=char&amp;&amp;char&lt;=&quot;Z&quot;||&quot;a&quot;&lt;=char&amp;&amp;char&lt;=&quot;z&quot;||indexOf.call(&quot;-;/?:@&amp;=+$,_.!~*&#39;()[]%&quot;,char)&gt;=0;)&quot;%&quot;===char?(chunks.push(this.prefix(length)),this.forward(length),length=0,chunks.push(this.scan_uri_escapes(name,start_mark))):length++,char=this.peek(length);if(0!==length&amp;&amp;(chunks.push(this.prefix(length)),this.forward(length),length=0),0===chunks.length)throw new exports.ScannerError(`while parsing a ${name}`,start_mark,`expected URI but found ${char}`,this.get_mark());return chunks.join(&quot;&quot;)}scan_uri_escapes(name,start_mark){var bytes,i,k;for(bytes=[],this.get_mark();&quot;%&quot;===this.peek();){for(this.forward(),k=i=0;i&lt;=2;k=++i)throw new exports.ScannerError(`while scanning a ${name}`,start_mark,`expected URI escape sequence of 2 hexadecimal numbers but found ${this.peek(k)}`,this.get_mark());bytes.push(String.fromCharCode(parseInt(this.prefix(2),16))),this.forward(2)}return bytes.join(&quot;&quot;)}scan_line_break(){var char;return char=this.peek(),indexOf.call(&quot;\r\n…&quot;,char)&gt;=0?(&quot;\r\n&quot;===this.prefix(2)?this.forward(2):this.forward(),&quot;\n&quot;):indexOf.call(&quot;\u2028\u2029&quot;,char)&gt;=0?(this.forward(),char):&quot;&quot;}}return C_LB=&quot;\r\n…\u2028\u2029&quot;,C_WS=&quot;\t &quot;,C_NUMBERS=&quot;0123456789&quot;,ESCAPE_REPLACEMENTS={0:&quot;\0&quot;,a:&quot;&quot;,b:&quot;\b&quot;,t:&quot;\t&quot;,&quot;\t&quot;:&quot;\t&quot;,n:&quot;\n&quot;,v:&quot;\v&quot;,f:&quot;\f&quot;,r:&quot;\r&quot;,e:&quot;&quot;,&quot; &quot;:&quot; &quot;,&#39;&quot;&#39;:&#39;&quot;&#39;,&quot;\\&quot;:&quot;\\&quot;,N:&quot;…&quot;,_:&quot; &quot;,L:&quot;\u2028&quot;,P:&quot;\u2029&quot;},ESCAPE_CODES={x:2,u:4,U:8},ctor=Scanner.prototype.initialise,Scanner}.call(this)}).call(this)}),register({0:[&quot;./parser&quot;]},0,function(global,module,exports,require,window){(function(){var MarkedYAMLError,events,tokens,hasProp={}.hasOwnProperty;events=require(&quot;./events&quot;),({MarkedYAMLError:MarkedYAMLError}=require(&quot;./errors&quot;)),tokens=require(&quot;./tokens&quot;),this.ParserError=class extends MarkedYAMLError{},this.Parser=function(){var DEFAULT_TAGS,ctor;class Parser{constructor(){return ctor.apply(this,arguments)}initialise(){return this.current_event=null,this.yaml_version=null,this.tag_handles={},this.states=[],this.marks=[],this.state=&quot;parse_stream_start&quot;}dispose(){return this.states=[],this.state=null}check_event(...choices){var choice,i,len;if(null===this.current_event&amp;&amp;null!=this.state&amp;&amp;(this.current_event=this[this.state]()),null!==this.current_event){if(0===choices.length)return!0;for(i=0,len=choices.length;i&lt;len;i++)if(choice=choices[i],this.current_event instanceof choice)return!0}return!1}peek_event(){return null===this.current_event&amp;&amp;null!=this.state&amp;&amp;(this.current_event=this[this.state]()),this.current_event}get_event(){var event;return null===this.current_event&amp;&amp;null!=this.state&amp;&amp;(this.current_event=this[this.state]()),event=this.current_event,this.current_event=null,event}parse_stream_start(){var event,token;return token=this.get_token(),event=new events.StreamStartEvent(token.start_mark,token.end_mark),this.state=&quot;parse_implicit_document_start&quot;,event}parse_implicit_document_start(){var end_mark,event,start_mark,token;return this.check_token(tokens.DirectiveToken,tokens.DocumentStartToken,tokens.StreamEndToken)?this.parse_document_start():(this.tag_handles=DEFAULT_TAGS,token=this.peek_token(),start_mark=end_mark=token.start_mark,event=new events.DocumentStartEvent(start_mark,end_mark,!1),this.states.push(&quot;parse_document_end&quot;),this.state=&quot;parse_block_node&quot;,event)}parse_document_start(){for(var end_mark,event,start_mark,tags,token,version;this.check_token(tokens.DocumentEndToken);)this.get_token();if(this.check_token(tokens.StreamEndToken)){if(token=this.get_token(),event=new events.StreamEndEvent(token.start_mark,token.end_mark),0!==this.states.length)throw new Error(&quot;assertion error, states should be empty&quot;);if(0!==this.marks.length)throw new Error(&quot;assertion error, marks should be empty&quot;);this.state=null}else{if(start_mark=this.peek_token().start_mark,[version,tags]=this.process_directives(),!this.check_token(tokens.DocumentStartToken))throw new exports.ParserError(`expected &#39;&lt;document start&gt;&#39;, but found ${this.peek_token().id}`,this.peek_token().start_mark);end_mark=(token=this.get_token()).end_mark,event=new events.DocumentStartEvent(start_mark,end_mark,!0,version,tags),this.states.push(&quot;parse_document_end&quot;),this.state=&quot;parse_document_content&quot;}return event}parse_document_end(){var end_mark,event,explicit,start_mark,token;return token=this.peek_token(),start_mark=end_mark=token.start_mark,explicit=!1,this.check_token(tokens.DocumentEndToken)&amp;&amp;(end_mark=(token=this.get_token()).end_mark,explicit=!0),event=new events.DocumentEndEvent(start_mark,end_mark,explicit),this.state=&quot;parse_document_start&quot;,event}parse_document_content(){var event;return this.check_token(tokens.DirectiveToken,tokens.DocumentStartToken,tokens.DocumentEndToken,tokens.StreamEndToken)?(event=this.process_empty_scalar(this.peek_token().start_mark),this.state=this.states.pop(),event):this.parse_block_node()}process_directives(){var handle,major,minor,prefix,ref,tag_handles_copy,token,value;for(this.yaml_version=null,this.tag_handles={};this.check_token(tokens.DirectiveToken);)if(&quot;YAML&quot;===(token=this.get_token()).name){if(null!==this.yaml_version)throw new exports.ParserError(null,null,&quot;found duplicate YAML directive&quot;,token.start_mark);if([major,minor]=token.value,1!==major)throw new exports.ParserError(null,null,&quot;found incompatible YAML document (version 1.* is required)&quot;,token.start_mark);this.yaml_version=token.value}else if(&quot;TAG&quot;===token.name){if([handle,prefix]=token.value,handle in this.tag_handles)throw new exports.ParserError(null,null,`duplicate tag handle ${handle}`,token.start_mark);this.tag_handles[handle]=prefix}tag_handles_copy=null,ref=this.tag_handles;for(handle in ref)hasProp.call(ref,handle)&amp;&amp;(prefix=ref[handle],null==tag_handles_copy&amp;&amp;(tag_handles_copy={}),tag_handles_copy[handle]=prefix);value=[this.yaml_version,tag_handles_copy];for(handle in DEFAULT_TAGS)hasProp.call(DEFAULT_TAGS,handle)&amp;&amp;((prefix=DEFAULT_TAGS[handle])in this.tag_handles||(this.tag_handles[handle]=prefix));return value}parse_block_node(){return this.parse_node(!0)}parse_flow_node(){return this.parse_node()}parse_block_node_or_indentless_sequence(){return this.parse_node(!0,!0)}parse_node(block=!1,indentless_sequence=!1){var anchor,end_mark,event,handle,implicit,node,start_mark,suffix,tag,tag_mark,token;if(this.check_token(tokens.AliasToken))token=this.get_token(),event=new events.AliasEvent(token.value,token.start_mark,token.end_mark),this.state=this.states.pop();else{if(anchor=null,tag=null,start_mark=end_mark=tag_mark=null,this.check_token(tokens.AnchorToken)?(start_mark=(token=this.get_token()).start_mark,end_mark=token.end_mark,anchor=token.value,this.check_token(tokens.TagToken)&amp;&amp;(tag_mark=(token=this.get_token()).start_mark,end_mark=token.end_mark,tag=token.value)):this.check_token(tokens.TagToken)&amp;&amp;(start_mark=tag_mark=(token=this.get_token()).start_mark,end_mark=token.end_mark,tag=token.value,this.check_token(tokens.AnchorToken)&amp;&amp;(end_mark=(token=this.get_token()).end_mark,anchor=token.value)),null!==tag)if([handle,suffix]=tag,null!==handle){if(!(handle in this.tag_handles))throw new exports.ParserError(&quot;while parsing a node&quot;,start_mark,`found undefined tag handle ${handle}`,tag_mark);tag=this.tag_handles[handle]+suffix}else tag=suffix;if(null===start_mark&amp;&amp;(start_mark=end_mark=this.peek_token().start_mark),event=null,implicit=null===tag||&quot;!&quot;===tag,indentless_sequence&amp;&amp;this.check_token(tokens.BlockEntryToken))end_mark=this.peek_token().end_mark,event=new events.SequenceStartEvent(anchor,tag,implicit,start_mark,end_mark),this.state=&quot;parse_indentless_sequence_entry&quot;;else if(this.check_token(tokens.ScalarToken))end_mark=(token=this.get_token()).end_mark,implicit=token.plain&amp;&amp;null===tag||&quot;!&quot;===tag?[!0,!1]:null===tag?[!1,!0]:[!1,!1],event=new events.ScalarEvent(anchor,tag,implicit,token.value,start_mark,end_mark,token.style),this.state=this.states.pop();else if(this.check_token(tokens.FlowSequenceStartToken))end_mark=this.peek_token().end_mark,event=new events.SequenceStartEvent(anchor,tag,implicit,start_mark,end_mark,!0),this.state=&quot;parse_flow_sequence_first_entry&quot;;else if(this.check_token(tokens.FlowMappingStartToken))end_mark=this.peek_token().end_mark,event=new events.MappingStartEvent(anchor,tag,implicit,start_mark,end_mark,!0),this.state=&quot;parse_flow_mapping_first_key&quot;;else if(block&amp;&amp;this.check_token(tokens.BlockSequenceStartToken))end_mark=this.peek_token().end_mark,event=new events.SequenceStartEvent(anchor,tag,implicit,start_mark,end_mark,!1),this.state=&quot;parse_block_sequence_first_entry&quot;;else if(block&amp;&amp;this.check_token(tokens.BlockMappingStartToken))end_mark=this.peek_token().end_mark,event=new events.MappingStartEvent(anchor,tag,implicit,start_mark,end_mark,!1),this.state=&quot;parse_block_mapping_first_key&quot;;else{if(null===anchor&amp;&amp;null===tag)throw node=block?&quot;block&quot;:&quot;flow&quot;,token=this.peek_token(),new exports.ParserError(`while parsing a ${node} node`,start_mark,`expected the node content, but found ${token.id}`,token.start_mark);event=new events.ScalarEvent(anchor,tag,[implicit,!1],&quot;&quot;,start_mark,end_mark),this.state=this.states.pop()}}return event}parse_block_sequence_first_entry(){var token;return token=this.get_token(),this.marks.push(token.start_mark),this.parse_block_sequence_entry()}parse_block_sequence_entry(){var event,token;if(this.check_token(tokens.BlockEntryToken))return token=this.get_token(),this.check_token(tokens.BlockEntryToken,tokens.BlockEndToken)?(this.state=&quot;parse_block_sequence_entry&quot;,this.process_empty_scalar(token.end_mark)):(this.states.push(&quot;parse_block_sequence_entry&quot;),this.parse_block_node());if(!this.check_token(tokens.BlockEndToken))throw token=this.peek_token(),new exports.ParserError(&quot;while parsing a block collection&quot;,this.marks.slice(-1)[0],`expected &lt;block end&gt;, but found ${token.id}`,token.start_mark);return token=this.get_token(),event=new events.SequenceEndEvent(token.start_mark,token.end_mark),this.state=this.states.pop(),this.marks.pop(),event}parse_indentless_sequence_entry(){var event,token;return this.check_token(tokens.BlockEntryToken)?(token=this.get_token(),this.check_token(tokens.BlockEntryToken,tokens.KeyToken,tokens.ValueToken,tokens.BlockEndToken)?(this.state=&quot;parse_indentless_sequence_entry&quot;,this.process_empty_scalar(token.end_mark)):(this.states.push(&quot;parse_indentless_sequence_entry&quot;),this.parse_block_node())):(token=this.peek_token(),event=new events.SequenceEndEvent(token.start_mark,token.start_mark),this.state=this.states.pop(),event)}parse_block_mapping_first_key(){var token;return token=this.get_token(),this.marks.push(token.start_mark),this.parse_block_mapping_key()}parse_block_mapping_key(){var event,token;if(this.check_token(tokens.KeyToken))return token=this.get_token(),this.check_token(tokens.KeyToken,tokens.ValueToken,tokens.BlockEndToken)?(this.state=&quot;parse_block_mapping_value&quot;,this.process_empty_scalar(token.end_mark)):(this.states.push(&quot;parse_block_mapping_value&quot;),this.parse_block_node_or_indentless_sequence());if(!this.check_token(tokens.BlockEndToken))throw token=this.peek_token(),new exports.ParserError(&quot;while parsing a block mapping&quot;,this.marks.slice(-1)[0],`expected &lt;block end&gt;, but found ${token.id}`,token.start_mark);return token=this.get_token(),event=new events.MappingEndEvent(token.start_mark,token.end_mark),this.state=this.states.pop(),this.marks.pop(),event}parse_block_mapping_value(){var token;return this.check_token(tokens.ValueToken)?(token=this.get_token(),this.check_token(tokens.KeyToken,tokens.ValueToken,tokens.BlockEndToken)?(this.state=&quot;parse_block_mapping_key&quot;,this.process_empty_scalar(token.end_mark)):(this.states.push(&quot;parse_block_mapping_key&quot;),this.parse_block_node_or_indentless_sequence())):(this.state=&quot;parse_block_mapping_key&quot;,token=this.peek_token(),this.process_empty_scalar(token.start_mark))}parse_flow_sequence_first_entry(){var token;return token=this.get_token(),this.marks.push(token.start_mark),this.parse_flow_sequence_entry(!0)}parse_flow_sequence_entry(first=!1){var event,token;if(!this.check_token(tokens.FlowSequenceEndToken)){if(!first){if(!this.check_token(tokens.FlowEntryToken))throw token=this.peek_token(),new exports.ParserError(&quot;while parsing a flow sequence&quot;,this.marks.slice(-1)[0],`expected &#39;,&#39; or &#39;]&#39;, but got ${token.id}`,token.start_mark);this.get_token()}if(this.check_token(tokens.KeyToken))return token=this.peek_token(),event=new events.MappingStartEvent(null,null,!0,token.start_mark,token.end_mark,!0),this.state=&quot;parse_flow_sequence_entry_mapping_key&quot;,event;if(!this.check_token(tokens.FlowSequenceEndToken))return this.states.push(&quot;parse_flow_sequence_entry&quot;),this.parse_flow_node()}return token=this.get_token(),event=new events.SequenceEndEvent(token.start_mark,token.end_mark),this.state=this.states.pop(),this.marks.pop(),event}parse_flow_sequence_entry_mapping_key(){var token;return token=this.get_token(),this.check_token(tokens.ValueToken,tokens.FlowEntryToken,tokens.FlowSequenceEndToken)?(this.state=&quot;parse_flow_sequence_entry_mapping_value&quot;,this.process_empty_scalar(token.end_mark)):(this.states.push(&quot;parse_flow_sequence_entry_mapping_value&quot;),this.parse_flow_node())}parse_flow_sequence_entry_mapping_value(){var token;return this.check_token(tokens.ValueToken)?(token=this.get_token(),this.check_token(tokens.FlowEntryToken,tokens.FlowSequenceEndToken)?(this.state=&quot;parse_flow_sequence_entry_mapping_end&quot;,this.process_empty_scalar(token.end_mark)):(this.states.push(&quot;parse_flow_sequence_entry_mapping_end&quot;),this.parse_flow_node())):(this.state=&quot;parse_flow_sequence_entry_mapping_end&quot;,token=this.peek_token(),this.process_empty_scalar(token.start_mark))}parse_flow_sequence_entry_mapping_end(){var token;return this.state=&quot;parse_flow_sequence_entry&quot;,token=this.peek_token(),new events.MappingEndEvent(token.start_mark,token.start_mark)}parse_flow_mapping_first_key(){var token;return token=this.get_token(),this.marks.push(token.start_mark),this.parse_flow_mapping_key(!0)}parse_flow_mapping_key(first=!1){var event,token;if(!this.check_token(tokens.FlowMappingEndToken)){if(!first){if(!this.check_token(tokens.FlowEntryToken))throw token=this.peek_token(),new exports.ParserError(&quot;while parsing a flow mapping&quot;,this.marks.slice(-1)[0],`expected &#39;,&#39; or &#39;}&#39;, but got ${token.id}`,token.start_mark);this.get_token()}if(this.check_token(tokens.KeyToken))return token=this.get_token(),this.check_token(tokens.ValueToken,tokens.FlowEntryToken,tokens.FlowMappingEndToken)?(this.state=&quot;parse_flow_mapping_value&quot;,this.process_empty_scalar(token.end_mark)):(this.states.push(&quot;parse_flow_mapping_value&quot;),this.parse_flow_node());if(!this.check_token(tokens.FlowMappingEndToken))return this.states.push(&quot;parse_flow_mapping_empty_value&quot;),this.parse_flow_node()}return token=this.get_token(),event=new events.MappingEndEvent(token.start_mark,token.end_mark),this.state=this.states.pop(),this.marks.pop(),event}parse_flow_mapping_value(){var token;return this.check_token(tokens.ValueToken)?(token=this.get_token(),this.check_token(tokens.FlowEntryToken,tokens.FlowMappingEndToken)?(this.state=&quot;parse_flow_mapping_key&quot;,this.process_empty_scalar(token.end_mark)):(this.states.push(&quot;parse_flow_mapping_key&quot;),this.parse_flow_node())):(this.state=&quot;parse_flow_mapping_key&quot;,token=this.peek_token(),this.process_empty_scalar(token.start_mark))}parse_flow_mapping_empty_value(){return this.state=&quot;parse_flow_mapping_key&quot;,this.process_empty_scalar(this.peek_token().start_mark)}process_empty_scalar(mark){return new events.ScalarEvent(null,null,[!0,!1],&quot;&quot;,mark,mark)}}return DEFAULT_TAGS={&quot;!&quot;:&quot;!&quot;,&quot;!!&quot;:&quot;tag:yaml.org,2002:&quot;},ctor=Parser.prototype.initialise,Parser}.call(this)}).call(this)}),register({0:[&quot;./loader&quot;]},0,function(global,module,exports,require,window){(function(){var composer,constructor,parser,reader,resolver,scanner,util;util=require(&quot;./util&quot;),reader=require(&quot;./reader&quot;),scanner=require(&quot;./scanner&quot;),parser=require(&quot;./parser&quot;),composer=require(&quot;./composer&quot;),resolver=require(&quot;./resolver&quot;),constructor=require(&quot;./constructor&quot;),this.make_loader=function(Reader=reader.Reader,Scanner=scanner.Scanner,Parser=parser.Parser,Composer=composer.Composer,Resolver=resolver.Resolver,Constructor=constructor.Constructor){var components;return components=[Reader,Scanner,Parser,Composer,Resolver,Constructor],function(){var component;class Loader{constructor(stream){var i,len,ref;for(components[0].prototype.initialise.call(this,stream),i=0,len=(ref=components.slice(1)).length;i&lt;len;i++)(component=ref[i]).prototype.initialise.call(this)}}return util.extend(Loader.prototype,...function(){var i,len,results;for(results=[],i=0,len=components.length;i&lt;len;i++)component=components[i],results.push(component.prototype);return results}()),Loader}.call(this)},this.Loader=this.make_loader()}).call(this)}),register({&quot;&quot;:[&quot;yaml&quot;]},0,function(global,module,exports,require,window){(function(){var dumper,loader,util;this.composer=require(&quot;./composer&quot;),this.constructor=require(&quot;./constructor&quot;),dumper=this.dumper=require(&quot;./dumper&quot;),this.errors=require(&quot;./errors&quot;),this.events=require(&quot;./events&quot;),loader=this.loader=require(&quot;./loader&quot;),this.nodes=require(&quot;./nodes&quot;),this.parser=require(&quot;./parser&quot;),this.reader=require(&quot;./reader&quot;),this.resolver=require(&quot;./resolver&quot;),this.scanner=require(&quot;./scanner&quot;),this.tokens=require(&quot;./tokens&quot;),util=require(&quot;./util&quot;),this.scan=function(stream,Loader=loader.Loader){var _loader,results;for(_loader=new Loader(stream),results=[];_loader.check_token();)results.push(_loader.get_token());return results},this.parse=function(stream,Loader=loader.Loader){var _loader,results;for(_loader=new Loader(stream),results=[];_loader.check_event();)results.push(_loader.get_event());return results},this.compose=function(stream,Loader=loader.Loader){return new Loader(stream).get_single_node()},this.compose_all=function(stream,Loader=loader.Loader){var _loader,results;for(_loader=new Loader(stream),results=[];_loader.check_node();)results.push(_loader.get_node());return results},this.load=function(stream,Loader=loader.Loader){return new Loader(stream).get_single_data()},this.load_all=function(stream,Loader=loader.Loader){var _loader,results;for(_loader=new Loader(stream),results=[];_loader.check_data();)results.push(_loader.get_data());return results},this.emit=function(events,stream,Dumper=dumper.Dumper,options={}){var _dumper,dest,event,i,len;_dumper=new Dumper(dest=stream||new util.StringStream,options);try{for(i=0,len=events.length;i&lt;len;i++)event=events[i],_dumper.emit(event)}finally{_dumper.dispose()}return stream||dest.string},this.serialize=function(node,stream,Dumper=dumper.Dumper,options={}){return exports.serialize_all([node],stream,Dumper,options)},this.serialize_all=function(nodes,stream,Dumper=dumper.Dumper,options={}){var _dumper,dest,i,len,node;_dumper=new Dumper(dest=stream||new util.StringStream,options);try{for(_dumper.open(),i=0,len=nodes.length;i&lt;len;i++)node=nodes[i],_dumper.serialize(node);_dumper.close()}finally{_dumper.dispose()}return stream||dest.string},this.dump=function(data,stream,Dumper=dumper.Dumper,options={}){return exports.dump_all([data],stream,Dumper,options)},this.dump_all=function(documents,stream,Dumper=dumper.Dumper,options={}){var _dumper,dest,document,i,len;_dumper=new Dumper(dest=stream||new util.StringStream,options);try{for(_dumper.open(),i=0,len=documents.length;i&lt;len;i++)document=documents[i],_dumper.represent(document);_dumper.close()}finally{_dumper.dispose()}return stream||dest.string}}).call(this)}),this.yaml=require_from(null,&quot;&quot;)(&quot;yaml&quot;)}).call(this);</td>
1129
+ </tr>
1130
+ </table>
1131
+
1132
+ <details class="details-reset details-overlay BlobToolbar position-absolute js-file-line-actions dropdown d-none" aria-hidden="true">
1133
+ <summary class="btn-octicon ml-0 px-2 p-0 bg-white border border-gray-dark rounded-1" aria-label="Inline file action toolbar">
1134
+ <svg class="octicon octicon-kebab-horizontal" viewBox="0 0 13 16" version="1.1" width="13" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.5 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm5 0a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM13 7.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0z"/></svg>
1135
+ </summary>
1136
+ <details-menu>
1137
+ <ul class="BlobToolbar-dropdown dropdown-menu dropdown-menu-se mt-2" style="width:185px">
1138
+ <li>
1139
+ <clipboard-copy role="menuitem" class="dropdown-item" id="js-copy-lines" style="cursor:pointer;">
1140
+ Copy lines
1141
+ </clipboard-copy>
1142
+ </li>
1143
+ <li>
1144
+ <clipboard-copy role="menuitem" class="dropdown-item" id="js-copy-permalink" style="cursor:pointer;">
1145
+ Copy permalink
1146
+ </clipboard-copy>
1147
+ </li>
1148
+ <li><a class="dropdown-item js-update-url-with-hash" id="js-view-git-blame" role="menuitem" href="/connec/yaml-js/blame/579e6f6cc513ded1740959fc57aac3dc90c5f788/yaml.min.js">View git blame</a></li>
1149
+ <li><a class="dropdown-item" id="js-new-issue" role="menuitem" href="/connec/yaml-js/issues/new">Reference in new issue</a></li>
1150
+ </ul>
1151
+ </details-menu>
1152
+ </details>
1153
+
1154
+ </div>
1155
+
1156
+ </div>
1157
+
1158
+
1159
+
1160
+ <details class="details-reset details-overlay details-overlay-dark">
1161
+ <summary data-hotkey="l" aria-label="Jump to line"></summary>
1162
+ <details-dialog class="Box Box--overlay d-flex flex-column anim-fade-in fast linejump" aria-label="Jump to line">
1163
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form class="js-jump-to-line-form Box-body d-flex" action="" accept-charset="UTF-8" method="get"><input name="utf8" type="hidden" value="&#x2713;" />
1164
+ <input class="form-control flex-auto mr-3 linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" aria-label="Jump to line" autofocus>
1165
+ <button type="submit" class="btn" data-close-dialog>Go</button>
1166
+ </form> </details-dialog>
1167
+ </details>
1168
+
1169
+ <div class="Popover anim-scale-in js-tagsearch-popover"
1170
+ hidden
1171
+ data-tagsearch-url="/connec/yaml-js/find-symbols"
1172
+ data-tagsearch-ref="master"
1173
+ data-tagsearch-path="yaml.min.js"
1174
+ data-tagsearch-lang="JavaScript"
1175
+ data-hydro-click="{&quot;event_type&quot;:&quot;code_navigation.click_on_symbol&quot;,&quot;payload&quot;:{&quot;action&quot;:&quot;click_on_symbol&quot;,&quot;repository_id&quot;:2678133,&quot;ref&quot;:&quot;master&quot;,&quot;language&quot;:&quot;JavaScript&quot;,&quot;client_id&quot;:&quot;1038165182.1537261186&quot;,&quot;originating_request_id&quot;:&quot;DB25:1DC7:1EA81C5:2CA73EF:5E09CCA9&quot;,&quot;originating_url&quot;:&quot;https://github.com/connec/yaml-js/blob/master/yaml.min.js&quot;,&quot;referrer&quot;:&quot;https://github.com/connec/yaml-js&quot;,&quot;user_id&quot;:25822972}}"
1176
+ data-hydro-click-hmac="5d61845c6eaed1fb67e90d36ec8369f6ce6e715d3e2b79ae126d62b1e5e1b4e8">
1177
+ <div class="Popover-message Popover-message--large Popover-message--top-left TagsearchPopover mt-1 mb-4 mx-auto Box box-shadow-large">
1178
+ <div class="TagsearchPopover-content js-tagsearch-popover-content overflow-auto" style="will-change:transform;">
1179
+ </div>
1180
+ </div>
1181
+ </div>
1182
+
1183
+
1184
+
1185
+ </div>
1186
+ </div>
1187
+
1188
+ </main>
1189
+ </div>
1190
+
1191
+
1192
+ </div>
1193
+
1194
+
1195
+ <div class="footer container-lg width-full p-responsive" role="contentinfo">
1196
+ <div class="position-relative d-flex flex-row-reverse flex-lg-row flex-wrap flex-lg-nowrap flex-justify-center flex-lg-justify-between pt-6 pb-2 mt-6 f6 text-gray border-top border-gray-light ">
1197
+ <ul class="list-style-none d-flex flex-wrap col-12 col-lg-5 flex-justify-center flex-lg-justify-between mb-2 mb-lg-0">
1198
+ <li class="mr-3 mr-lg-0">&copy; 2019 GitHub, Inc.</li>
1199
+ <li class="mr-3 mr-lg-0"><a data-ga-click="Footer, go to terms, text:terms" href="https://github.com/site/terms">Terms</a></li>
1200
+ <li class="mr-3 mr-lg-0"><a data-ga-click="Footer, go to privacy, text:privacy" href="https://github.com/site/privacy">Privacy</a></li>
1201
+ <li class="mr-3 mr-lg-0"><a data-ga-click="Footer, go to security, text:security" href="https://github.com/security">Security</a></li>
1202
+ <li class="mr-3 mr-lg-0"><a href="https://githubstatus.com/" data-ga-click="Footer, go to status, text:status">Status</a></li>
1203
+ <li><a data-ga-click="Footer, go to help, text:help" href="https://help.github.com">Help</a></li>
1204
+ </ul>
1205
+
1206
+ <a aria-label="Homepage" title="GitHub" class="footer-octicon d-none d-lg-block mx-lg-4" href="https://github.com">
1207
+ <svg height="24" class="octicon octicon-mark-github" viewBox="0 0 16 16" version="1.1" width="24" aria-hidden="true"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"/></svg>
1208
+ </a>
1209
+ <ul class="list-style-none d-flex flex-wrap col-12 col-lg-5 flex-justify-center flex-lg-justify-between mb-2 mb-lg-0">
1210
+ <li class="mr-3 mr-lg-0"><a data-ga-click="Footer, go to contact, text:contact" href="https://github.com/contact">Contact GitHub</a></li>
1211
+ <li class="mr-3 mr-lg-0"><a href="https://github.com/pricing" data-ga-click="Footer, go to Pricing, text:Pricing">Pricing</a></li>
1212
+ <li class="mr-3 mr-lg-0"><a href="https://developer.github.com" data-ga-click="Footer, go to api, text:api">API</a></li>
1213
+ <li class="mr-3 mr-lg-0"><a href="https://training.github.com" data-ga-click="Footer, go to training, text:training">Training</a></li>
1214
+ <li class="mr-3 mr-lg-0"><a href="https://github.blog" data-ga-click="Footer, go to blog, text:blog">Blog</a></li>
1215
+ <li><a data-ga-click="Footer, go to about, text:about" href="https://github.com/about">About</a></li>
1216
+
1217
+ </ul>
1218
+ </div>
1219
+ <div class="d-flex flex-justify-center pb-6">
1220
+ <span class="f6 text-gray-light"></span>
1221
+ </div>
1222
+ </div>
1223
+
1224
+
1225
+
1226
+ <div id="ajax-error-message" class="ajax-error-message flash flash-error">
1227
+ <svg class="octicon octicon-alert" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.893 1.5c-.183-.31-.52-.5-.887-.5s-.703.19-.886.5L.138 13.499a.98.98 0 000 1.001c.193.31.53.501.886.501h13.964c.367 0 .704-.19.877-.5a1.03 1.03 0 00.01-1.002L8.893 1.5zm.133 11.497H6.987v-2.003h2.039v2.003zm0-3.004H6.987V5.987h2.039v4.006z"/></svg>
1228
+ <button type="button" class="flash-close js-ajax-error-dismiss" aria-label="Dismiss error">
1229
+ <svg class="octicon octicon-x" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48L7.48 8z"/></svg>
1230
+ </button>
1231
+ You can’t perform that action at this time.
1232
+ </div>
1233
+
1234
+
1235
+
1236
+ <script crossorigin="anonymous" integrity="sha512-/VSJJF96vCzSgC6y09Z4FqzjjuXRWOKIq2twF0Nb5/v8xy4qzngnH6Au6TFwbmNN/lborYJsojEpgIbYjoGvHQ==" type="application/javascript" src="https://github.githubassets.com/assets/frameworks-fd548924.js"></script>
1237
+
1238
+ <script crossorigin="anonymous" async="async" integrity="sha512-0mcBYsTTDNy016WuG7Zu/Pb5dsdoVzVb5FlxH4btAPKKyTBKn+5g6N6lXxmMo1WokYH8uOYuLpTgLjU29jSqcA==" type="application/javascript" src="https://github.githubassets.com/assets/github-bootstrap-d2670162.js"></script>
1239
+
1240
+
1241
+
1242
+ <div class="js-stale-session-flash flash flash-warn flash-banner" hidden
1243
+ >
1244
+ <svg class="octicon octicon-alert" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.893 1.5c-.183-.31-.52-.5-.887-.5s-.703.19-.886.5L.138 13.499a.98.98 0 000 1.001c.193.31.53.501.886.501h13.964c.367 0 .704-.19.877-.5a1.03 1.03 0 00.01-1.002L8.893 1.5zm.133 11.497H6.987v-2.003h2.039v2.003zm0-3.004H6.987V5.987h2.039v4.006z"/></svg>
1245
+ <span class="js-stale-session-flash-signed-in" hidden>You signed in with another tab or window. <a href="">Reload</a> to refresh your session.</span>
1246
+ <span class="js-stale-session-flash-signed-out" hidden>You signed out in another tab or window. <a href="">Reload</a> to refresh your session.</span>
1247
+ </div>
1248
+ <template id="site-details-dialog">
1249
+ <details class="details-reset details-overlay details-overlay-dark lh-default text-gray-dark hx_rsm" open>
1250
+ <summary role="button" aria-label="Close dialog"></summary>
1251
+ <details-dialog class="Box Box--overlay d-flex flex-column anim-fade-in fast hx_rsm-dialog hx_rsm-modal">
1252
+ <button class="Box-btn-octicon m-0 btn-octicon position-absolute right-0 top-0" type="button" aria-label="Close dialog" data-close-dialog>
1253
+ <svg class="octicon octicon-x" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48L7.48 8z"/></svg>
1254
+ </button>
1255
+ <div class="octocat-spinner my-6 js-details-dialog-spinner"></div>
1256
+ </details-dialog>
1257
+ </details>
1258
+ </template>
1259
+
1260
+ <div class="Popover js-hovercard-content position-absolute" style="display: none; outline: none;" tabindex="0">
1261
+ <div class="Popover-message Popover-message--bottom-left Popover-message--large Box box-shadow-large" style="width:360px;">
1262
+ </div>
1263
+ </div>
1264
+
1265
+ <div aria-live="polite" class="js-global-screen-reader-notice sr-only"></div>
1266
+
1267
+ </body>
1268
+ </html>
1269
+