We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 525c4e4 commit aa32b21Copy full SHA for aa32b21
README.md
@@ -144,4 +144,22 @@ wildcardPattern.match('subsub.www.google.com');
144
// => {sub: 'www', _: ['subsub', 'com']}
145
```
146
147
+## changelog
148
+
149
+### 0.7
150
151
+instead of
152
153
+``` js
154
+var urlPattern = require('url-pattern');
155
+var pattern = urlPattern.newPattern('/example');
156
+```
157
158
+now use
159
160
161
+var Pattern = require('url-pattern');
162
+var pattern = new Pattern('/example');
163
164
165
## [license: MIT](LICENSE)
0 commit comments