Skip to content

Commit

Permalink
Вносит дополнительные правки в ДЗ 'Модуляция'
Browse files Browse the repository at this point in the history
  • Loading branch information
brazilets committed Feb 29, 2024
1 parent b0b2444 commit 55e712a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ const createPost = () => ({
const posts = Array.from({length: CREATE_POST}, createPost);
posts.values();

export {createPost};
export {posts};
4 changes: 2 additions & 2 deletions js/main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {createPost} from './data.js';
import {posts} from './data.js';

createPost();
console.log(posts);

Check failure on line 3 in js/main.js

View workflow job for this annotation

GitHub Actions / Check

Unexpected console statement

0 comments on commit 55e712a

Please sign in to comment.