mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-31 14:07:40 +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'
|