refactor(pacakages/stdlib): add base jsdoc for each function

This commit is contained in:
2024-10-16 06:27:14 +07:00
parent eadf791942
commit 679bced9f1
28 changed files with 219 additions and 54 deletions
@@ -1,5 +1,5 @@
import { describe, it, expect } from 'vitest';
import { Stack } from './index';
import { Stack } from '.';
describe('stack', () => {
describe('constructor', () => {
+3 -1
View File
@@ -3,7 +3,9 @@ export type StackOptions = {
};
/**
* Represents a stack data structure
* @name Stack
* @category Data Structures
* @description Represents a stack data structure
*
* @since 0.0.2
*