mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-03-19 04:49:48 +00:00
7 lines
131 B
TypeScript
7 lines
131 B
TypeScript
import objstr = require('obj-str');
|
|
|
|
const isTrue = () => true;
|
|
|
|
objstr({ foo: true, bar: false, baz: isTrue() });
|
|
// => 'foo baz'
|