This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var arrOld = [2, 5, 3, 8, 9, 11, 12]; | |
| var arrNew = [8, 1, 3, 35, 5, 7]; | |
| // var arrOld = [ | |
| // {id: 2}, | |
| // {id: 5}, | |
| // {id: 3}, | |
| // {id: 8}, | |
| // {id: 9}, | |
| // {id: 11}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" | |
| content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> | |
| <title></title> | |
| <meta name="description" content="$3"> | |
| <meta name="keywords" content="$4"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const puppeteer = require('puppeteer'); | |
| const url = require('url'); | |
| const pLimit = require('p-limit'); | |
| const limit = pLimit(1); | |
| crawlerIG(['joanne_722']); | |
| /** | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var data = { | |
| '123': { | |
| 'count': 123, | |
| 'type': 'video', | |
| 'source': '' | |
| }, | |
| '345': { | |
| 'count': 345, | |
| 'type': 'video', | |
| 'source': '' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { showModalOrigin, showModal } from './function' | |
| showModalOrigin({ | |
| dom: 'dom', | |
| options: { | |
| clickCloseOrigin: (e, tools) => { | |
| console.log(e) | |
| console.log('click close origin') | |
| tools?.hideModalOrigin() | |
| } |
OlderNewer