tns({
swipeAngle: -1,
})
This file contains 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
<?php | |
function transliterate($text, $lowercase=false, $spaceToDash=false) { | |
$transliterationTable = array( | |
'а' => 'a', 'б' => 'b', 'в' => 'v', 'г' => 'g', 'д' => 'd', | |
'е' => 'e', 'ё' => 'yo', 'ж' => 'zh', 'з' => 'z', 'и' => 'i', | |
'й' => 'y', 'к' => 'k', 'л' => 'l', 'м' => 'm', 'н' => 'n', | |
'о' => 'o', 'п' => 'p', 'р' => 'r', 'с' => 's', 'т' => 't', | |
'у' => 'u', 'ф' => 'f', 'х' => 'kh', 'ц' => 'ts', 'ч' => 'ch', | |
'ш' => 'sh', 'щ' => 'shch', 'ъ' => '', 'ы' => 'y', 'ь' => '', | |
'э' => 'e', 'ю' => 'yu', 'я' => 'ya', |
This file contains 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
export function checkArraysContainSameObjects(arr1, arr2, key) { | |
if (arr1.length !== arr2.length) { | |
return false | |
} | |
return arr1.every(arr1Obj => arr2.some(arr2Obj => arr1Obj[key] === arr2Obj[key])) | |
} |
This file contains 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
/** | |
* @version 17.09.2024 | |
* @author [email protected] | |
* import { DateFormatterClass } from "/src/utils/DateFormatterClass.js" | |
* | |
* const dateFormatter = new DateFormatterClass('2024-03-28') // создаст экземпляр на указанную дату | |
* const dateFormatter = new DateFormatterClass() // создаст экземпляр на текущую дату | |
*/ | |
export class DateFormatterClass { | |
constructor(dateString = new Date()) { |
This file contains 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
/** | |
* @version 16.09.2024 | |
* import { getClearPhone } from "/src/utils/regexp.js" | |
*/ | |
export function getClearPhone(str) { | |
return str.replace(/[^+0-9]/g, "") | |
} |
This file contains 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
<template> | |
<Teleport to="body"> | |
<Transition> | |
<div v-if="isOpen" class="popup-overlay" @click="closePopup"> | |
<div class="popup-content" @click.stop> | |
<button class="popup-close" @click="closePopup"> | |
× | |
</button> | |
<slot></slot> |
This file contains 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 { copyToClipboard } from "/src/utils/copyToClipboard.js" | |
* | |
* copyToClipboard("Этот текст будет скопирован в буфер обмена") | |
*/ | |
export function copyToClipboard(text, callback) { | |
const textarea = document.createElement('textarea') | |
textarea.value = text | |
document.body.appendChild(textarea) |
This file contains 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
_ |
Дерево — это структура данных, состоящая из узлов, где каждый узел содержит данные и ссылки на дочерние узлы. Деревья часто используются для представления иерархических данных.
Ниже приведен пример реализации дерева на JavaScript. В этом примере мы создадим простое дерево, где каждый узел может иметь несколько дочерних узлов.
Каждый узел содержит данные и массив дочерних узлов:
class TreeNode {
Связный список (или Linked List) — это структура данных, состоящая из узлов, где каждый узел содержит данные и ссылку на следующий узел в списке. Связные списки позволяют эффективно добавлять и удалять элементы, не требуя сдвига других элементов, как это происходит в массиве.
Каждый узел в связном списке содержит данные и ссылку на следующий узел:
class Node {
public $data;
public $next;
public function __construct($data) {
$this->data = $data;
NewerOlder