File: repl.txt

package info (click to toggle)
node-stdlib 0.0.96%2Bds1%2B~cs0.0.429-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 421,476 kB
  • sloc: javascript: 1,562,831; ansic: 109,702; lisp: 49,823; cpp: 27,224; python: 7,871; sh: 6,807; makefile: 6,089; fortran: 3,102; awk: 387
file content (592 lines) | stat: -rw-r--r-- 11,404 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592

{{alias}}( value )
    Returns an object.

    If provided `null` or `undefined`, the function returns an empty object.

    If provided an existing object, the function returns the input value
    unchanged.

    Otherwise, if provided any other value (e.g., a number, string, etc), the
    function will return an object of the corresponding type.

    Parameters
    ----------
    value: any
        Input value.

    Returns
    -------
    out: Object
        Output object.

    Examples
    --------
    > var o = new {{alias}}( null )
    {}
    > o = new {{alias}}( 5.0 )
    <Number>
    > o = new {{alias}}( 'beep' )
    <String>

{{alias}}.assign( target, ...sources )
    Assigns enumerable and own properties from source objects to a target
    object.

    Parameters
    ----------
    target: Object
        Target object.

    sources: ...Object
        Source objects.

    Returns
    -------
    out: Object
        Target object.

    Examples
    --------
    > var o = {{alias}}.assign( {}, { 'a': 1 }, { 'b': 2 } )
    { 'a': 1, 'b': 2 }

{{alias}}.create( prototype, properties )
    Creates a new object with a specified prototype object and properties.

    Parameters
    ----------
    prototype: Object
        Prototype object.

    properties: Object
        Properties object.

    Returns
    -------
    out: Object
        New object.

    Examples
    --------
    > var o = {{alias}}.create( {}, { 'a': { 'value': 1 } } )
    { 'a': 1 }

{{alias}}.defineProperties( obj, properties )
    Defines properties for an object.

    Parameters
    ----------
    obj: Object
        Object.

    properties: Object
        Properties object.

    Returns
    -------
    out: Object
        Object.

    Examples
    --------
    > var o = {{alias}}.defineProperties( {}, { 'a': { 'value': 1 } } )
    { 'a': 1 }

{{alias}}.defineProperty( obj, key, descriptor )
    Defines a property for an object.

    Parameters
    ----------
    obj: Object
        Object.

    key: string
        Property key.

    descriptor: Object
        Property descriptor.

    Returns
    -------
    out: Object
        Object.

    Examples
    --------
    > var o = {{alias}}.defineProperty( {}, 'a', {
        'value': 1,
        'enumerable': true,
        'configurable': true,
        'writable': false
    })
    { 'a': 1 }

{{alias}}.entries( obj )
    Returns an array of an object's own enumerable string-keyed property
    [key, value] pairs.

    Parameters
    ----------
    obj: Object
        Object.

    Returns
    -------
    out: Array
        Array of [key, value] pairs.

    Examples
    --------
    > var o = {{alias}}.entries( { 'a': 1, 'b': 2 } )
    [ [ 'a', 1 ], [ 'b', 2 ] ]

{{alias}}.freeze( obj )
    Freezes an object.

    Parameters
    ----------
    obj: Object
        Object.

    Returns
    -------
    out: Object
        Object.

    Examples
    --------
    > var o = {{alias}}.freeze( { 'a': 1 } )
    { 'a': 1 }

{{alias}}.getOwnPropertyDescriptor( obj, key )
    Returns an object's own property descriptor.

    Parameters
    ----------
    obj: Object
        Object.

    key: string
        Property key.

    Returns
    -------
    out: Object
        Property descriptor.

    Examples
    --------
    > var o = {{alias}}.getOwnPropertyDescriptor( { 'a': 1 }, 'a' )
    { 'value': 1, 'enumerable': true, 'configurable': true, 'writable': true }

{{alias}}.getOwnPropertyDescriptors( obj )
    Returns an object's own property descriptors.

    Parameters
    ----------
    obj: Object
        Object.

    Returns
    -------
    out: Object
        Property descriptors.

    Examples
    --------
    > var o = {{alias}}.getOwnPropertyDescriptors( { 'a': 1, 'b': 2 } )
    {
        'a': {
            'value': 1,
            'enumerable': true,
            'configurable': true,
            'writable': true
        },
        'b': {
            'value': 2,
            'enumerable': true,
            'configurable': true,
            'writable': true
        }
    }

{{alias}}.getOwnPropertyNames( obj )
    Returns an array of an object's own enumerable and non-enumerable
    property names.

    Parameters
    ----------
    obj: Object
        Object.

    Returns
    -------
    out: Array
        Array of property names.

    Examples
    --------
    > var o = {{alias}}.getOwnPropertyNames( { 'a': 1, 'b': 2 } )
    [ 'a', 'b' ]

{{alias}}.getOwnPropertySymbols( obj )
    Returns an array of an object's own enumerable and non-enumerable
    symbol property names.

    Parameters
    ----------
    obj: Object
        Object.

    Returns
    -------
    out: Array
        Array of symbol property names.

    Examples
    --------
    > var o = {{alias}}.getOwnPropertySymbols( { 'a': 1, 'b': 2 } )
    []

{{alias}}.getPrototypeOf( obj )
    Returns an object's prototype.

    Parameters
    ----------
    obj: Object
        Object.

    Returns
    -------
    out: Object
        Prototype.

    Examples
    --------
    > var o = {{alias}}.getPrototypeOf( { 'a': 1, 'b': 2 } )
    <Object>

{{alias}}.hasOwn( obj, p )
    Returns a boolean indicating whether an object has a property with the
    specified name.

    Parameters
    ----------
    obj: Object
        Object.

    p: string
        Property name.

    Returns
    -------
    out: boolean
        Boolean indicating whether an object has a property with the specified
        name.

    Examples
    --------
    > var o = {{alias}}.hasOwn( { 'a': 1, 'b': 2 }, 'a' )
    true

{{alias}}.is( value1, value2 )
    Returns a boolean indicating whether two values are the same value.

    Parameters
    ----------
    value1: any
        First value.

    value2: any
        Second value.

    Returns
    -------
    out: boolean
        Boolean indicating whether two values are the same value.

    Examples
    --------
    > var o = {{alias}}.is( 1, 1 )
    true
    > var o = {{alias}}.is( 1, '1' )
    false

{{alias}}.isExtensible( obj )
    Returns a boolean indicating whether an object is extensible.

    Parameters
    ----------
    obj: Object
        Object.

    Returns
    -------
    out: boolean
        Boolean indicating whether an object is extensible.

    Examples
    --------
    > var o = {{alias}}.isExtensible( { 'a': 1 } )
    true

{{alias}}.isFrozen( obj )
    Returns a boolean indicating whether an object is frozen.

    Parameters
    ----------
    obj: Object
        Object.

    Returns
    -------
    out: boolean
        Boolean indicating whether an object is frozen.

    Examples
    --------
    > var o = {{alias}}.isFrozen( { 'a': 1 } )
    false
    > var o = {{alias}}.isFrozen( {{alias}}.freeze( { 'a': 1 } ) )
    true

{{alias}}.isSealed( obj )
    Returns a boolean indicating whether an object is sealed.

    Parameters
    ----------
    obj: Object
        Object.

    Returns
    -------
    out: boolean
        Boolean indicating whether an object is sealed.

    Examples
    --------
    > var o = {{alias}}.isSealed( { 'a': 1 } )
    false
    > var o = {{alias}}.isSealed( {{alias}}.seal( { 'a': 1 } ) )
    true

{{alias}}.keys( obj )
    Returns an array of an object's own enumerable string-keyed property
    names.

    Parameters
    ----------
    obj: Object
        Object.

    Returns
    -------
    out: Array
        Array of property names.

    Examples
    --------
    > var o = {{alias}}.keys( { 'a': 1, 'b': 2 } )
    [ 'a', 'b' ]

{{alias}}.preventExtensions( obj )
    Prevents the addition of new properties to an object.

    Parameters
    ----------
    obj: Object
        Object.

    Returns
    -------
    out: Object
        Object.

    Examples
    --------
    > var o = {{alias}}.preventExtensions( { 'a': 1 } )
    { 'a': 1 }
    > o.b = 2;
    > o
    { 'a': 1 }

{{alias}}.seal( obj )
    Prevents the addition of new properties to an object and marks all
    existing properties as non-configurable.

    Parameters
    ----------
    obj: Object
        Object.

    Returns
    -------
    out: Object
        Object.

    Examples
    --------
    > var o = {{alias}}.seal( { 'a': 1 } )
    { 'a': 1 }
    > o.b = 2;
    > o
    { 'a': 1 }
    > delete o.a;
    > o
    { 'a': 1 }

{{alias}}.setPrototypeOf( obj, proto )
    Sets an object's prototype.

    Parameters
    ----------
    obj: Object
        Object.

    proto: Object
        Prototype.

    Returns
    -------
    out: Object
        Object.

    Examples
    --------
    > var o = {{alias}}.setPrototypeOf( { 'a': 1 }, { 'b': 2 } )
    { 'a': 1 }
    > o.b
    2

{{alias}}.values( obj )
    Returns an array of an object's own enumerable property values.

    Parameters
    ----------
    obj: Object
        Object.

    Returns
    -------
    out: Array
        Array of property values.

    Examples
    --------
    > var o = {{alias}}.values( { 'a': 1, 'b': 2 } )
    [ 1, 2 ]

{{alias}}.prototype.toLocaleString()
    Returns a string representing the object.

    Returns
    -------
    out: string
        String representing the object.

    Examples
    --------
    > var o = {{alias}}.prototype.toLocaleString.call( { 'a': 1, 'b': 2 } )
    <string>

{{alias}}.prototype.toString()
    Returns a string representing the object.

    Returns
    -------
    out: string
        String representing the object.

    Examples
    --------
    > var o = {{alias}}.prototype.toString.call( { 'a': 1, 'b': 2 } )
    <string>

{{alias}}.prototype.valueOf()
    Returns the primitive value of the object.

    Returns
    -------
    out: any
        Primitive value of the object.

    Examples
    --------
    > var o = {{alias}}.prototype.valueOf.call( { 'a': 1, 'b': 2 } )
    {}

{{alias}}.prototype.hasOwnProperty( p )
    Returns a boolean indicating whether an object has a property with the
    specified name.

    Parameters
    ----------
    p: string
        Property name.

    Returns
    -------
    out: boolean
        Boolean indicating whether an object has a property with the specified
        name.

    Examples
    --------
    > var o = {{alias}}.prototype.hasOwnProperty.call( { 'a': 1, 'b': 2 }, 'a' )
    true

{{alias}}.prototype.isPrototypeOf( obj )
    Returns a boolean indicating whether an object exists in another object's
    prototype chain.

    Parameters
    ----------
    obj: Object
        Object.

    Returns
    -------
    out: boolean
        Boolean indicating whether an object exists in another object's
        prototype chain.

    Examples
    --------
    > var p = { 'a': 1 };
    > var o = { '__proto__': p };
    > var b = o.isPrototypeOf( p );
    true

{{alias}}.prototype.propertyIsEnumerable( p )
    Returns a boolean indicating whether an object's property is enumerable.

    Parameters
    ----------
    p: string
        Property name.

    Returns
    -------
    out: boolean
        Boolean indicating whether an object's property is enumerable.

    Examples
    --------
    > var o = { 'a': 1, 'b': 2 };
    > var bool = {{alias}}.prototype.propertyIsEnumerable.call( o, 'a' )
    true

{{alias}}.prototype.constructor
    Property whose value is a reference to the constructor function that
    created the instance object.

    Examples
    --------
    > var o = new Object( null );
    > var ctr = o.constructor;
    <Object>

    See Also
    --------