You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Since Node.js v14, ECMAScript modules [have became the official standard format](https://nodejs.org/docs/latest-v14.x/api/esm.html#esm_modules_ecmascript_modules).
53
+
> Just ensure that you are [using module system](https://nodejs.org/api/packages.html#determining-module-system) and enjoy with ES6 import/export syntax.
54
+
55
+
50
56
## APIs
51
57
52
58
#### .extract(String url [, Object params])
@@ -56,7 +62,7 @@ Load and extract oembed data.
56
62
Example:
57
63
58
64
```js
59
-
const { extract } =require('oembed-parser')
65
+
import { extract } from'oembed-parser'
60
66
61
67
constgetOembed=async (url) => {
62
68
try {
@@ -91,7 +97,7 @@ Check if a URL matches with any provider in the list.
0 commit comments