Архитектурный шаблон "Мрак в моделях" на нескольких языках и платформах
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
337B

  1. // Memory.
  2. function memoryCreatePosition(x, y) {
  3. return {
  4. "x": x,
  5. "y": y,
  6. };
  7. }
  8. // UTS.
  9. function utsFloor(value) {
  10. return Math.floor(value);
  11. }
  12. // Создать массив индексов от 0 до указанного числа `count`.
  13. function utsIndexArray(count) {
  14. return Array.from(Array(count).keys());
  15. }