mirror of
https://github.com/snachodog/tok-to-insta-follower-bridge.git
synced 2025-09-14 07:43:31 -06:00
chore: format
This commit is contained in:
@@ -19,9 +19,8 @@ export abstract class AbstractService {
|
||||
),
|
||||
);
|
||||
|
||||
const users = Array.from(userCells).map((userCell) =>
|
||||
this.extractUserData(userCell),
|
||||
)
|
||||
const users = Array.from(userCells)
|
||||
.map((userCell) => this.extractUserData(userCell))
|
||||
.filter((user) => {
|
||||
const isNewUser = !this.crawledUsers.has(user.accountName);
|
||||
if (isNewUser) {
|
||||
|
@@ -1,8 +1,8 @@
|
||||
import { MESSAGE_NAMES } from "~lib/constants";
|
||||
import { BSKY_DOMAIN, MESSAGE_NAME_TO_QUERY_PARAM_MAP } from "~lib/constants";
|
||||
import { wait } from "~lib/utils";
|
||||
import { AbstractService } from "./abstractService";
|
||||
import type { CrawledUserInfo } from "~types";
|
||||
import { AbstractService } from "./abstractService";
|
||||
|
||||
export class XService extends AbstractService {
|
||||
extractUserData(userCell: Element): CrawledUserInfo {
|
||||
|
Reference in New Issue
Block a user