fugu-api-data 1.13.1 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/patterns.js +3 -3
- package/patterns.mjs +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fugu-api-data",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"description": "Data about Project Fugu 🐡 APIs.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"homepage": "https://github.com/tomayac/fugu-api-data#readme",
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"node-fetch": "^3.3.0",
|
|
27
|
-
"prettier": "^2.8.
|
|
27
|
+
"prettier": "^2.8.3"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/patterns.js
CHANGED
|
@@ -328,10 +328,10 @@ const patterns = {
|
|
|
328
328
|
blinkFeatureID: 1792,
|
|
329
329
|
},
|
|
330
330
|
'Multi-Screen Window Placement': {
|
|
331
|
-
regEx: /
|
|
331
|
+
regEx: /getScreenDetails\s*\(\)/g,
|
|
332
332
|
where: 'JavaScript',
|
|
333
|
-
supported: (async () => '
|
|
334
|
-
featureDetection: `(async () => '
|
|
333
|
+
supported: (async () => 'getScreenDetails' in self)(),
|
|
334
|
+
featureDetection: `(async () => 'getScreenDetails' in self)()`,
|
|
335
335
|
documentation:
|
|
336
336
|
'https://developer.chrome.com/articles/multi-screen-window-placement/',
|
|
337
337
|
blinkFeatureID: 3388,
|
package/patterns.mjs
CHANGED
|
@@ -328,10 +328,10 @@ export default {
|
|
|
328
328
|
blinkFeatureID: 1792,
|
|
329
329
|
},
|
|
330
330
|
'Multi-Screen Window Placement': {
|
|
331
|
-
regEx: /
|
|
331
|
+
regEx: /getScreenDetails\s*\(\)/g,
|
|
332
332
|
where: 'JavaScript',
|
|
333
|
-
supported: (async () => '
|
|
334
|
-
featureDetection: `(async () => '
|
|
333
|
+
supported: (async () => 'getScreenDetails' in self)(),
|
|
334
|
+
featureDetection: `(async () => 'getScreenDetails' in self)()`,
|
|
335
335
|
documentation:
|
|
336
336
|
'https://developer.chrome.com/articles/multi-screen-window-placement/',
|
|
337
337
|
blinkFeatureID: 3388,
|